HOW TO CREATE THE DJANGO PROJECT: ================================ 1) Create the folder where you want with any name 2) Open the command prompt 3) Use the command for the navigation to the create folder location: $ cd folder location 4) Use the command to create/start the project in Django: $ django-admin startproject title-project 5) Start the VS Code 6) File ==> Open Folder ==> Select your folder 7) Open the created project structure manage.py: ========== ==> it is the file which allows to interact with the Django project. Ex: to start the server for existing project, manage.py can be used. __init__.py: ============ ==> an empty file ==> the job of this file is to tell the current directory is the python package settings.py: ============ ==> containing all the settings and configurations of current project Ex: DB, authentication, URL Format etc. urls.py: ======= ==> contains all the URL patterns. ===================================================== Loading the project on the server: =================================== Open the command prompt navigate to the project folder $ cd project folder location run a command: $ python manage.py runserver copy the url paste on the browser