Getting started with Django Framework
-
To install Django
pip install django -
To create a project
django-admin startproject mytestsite -
To run the server
python manage.py runserver -
To handle migrations
python manage.py migrate -
To create a superuser for the admin page
python manage.py createsuperuser