What is routers in Django REST Framework ?

As we have seen in our previous post “Developing REST API using functions in DRF application views” … Read more

How to add Model to Django admin dashboard

ui

By default when you login to admin dashboard, http://127.0.0.1:8000/admin/ you will only see “Authentication and Authorisation ” … Read more

Developing REST API using functions in DRF application views

This post is in continuation with our previous post “Developing first REST API using Django Rest Framework … Read more

Creating admin login credentials for Django

This post describes how you can create a user who can login to the django admin site. … Read more

Writing first model for your Django App

django

This post is heavily based on “Writing your first Django App” article from django documentation. The only … Read more

Hosting a static website with Nginx on Ubuntu

In our previous post “What is Nginx and how to install Nginx on Ubuntu 20.04 ?”, we … Read more

What is Nginx and how to install Nginx on Ubuntu 20.04 ?

What is Nginx ? NGINX is open source software for web serving, reverse proxying, caching, load balancing, media … Read more

Writing first WSGI application and running it with uWSGI

WSGI is the Web Server Gateway Interface. It is a specification that describes how a web server … Read more