Django Framework

Django is a Python framework. You can find more info at

https://www.djangoproject.com

Django Tutorials


https://realpython.com/tutorials/django/

Advertisement

Create Project

django-admin.py startproject

Create New Application

python manage.py startapp

Run Server

python manage.py runserver [IP:PORT]

Django framework run server command start development web server on port 8000

To run server on port 80, use

python manage.py runserver 0.0.0.0:80

if you are running as non root user, you won’t be able to use port 80. The solution is to run as user root or install a reverse proxy like Nginx.

Applications using Django

https://wagtail.io

Add a comment

Leave a Reply

Your email address will not be published. Required fields are marked *

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Advertisement