Jul 29, 2024
python --versionpip install djangodjango-admin startproject <project_name>.__init__.pysettings.pyurls.pywsgi.pysettings.py: Application settings; includes security and database configurations.urls.py: Manages URL patterns of the application.wsgi.py: Connects web application with web server.manage.py: Command line utility for running the application server.urls.py link to view functions/classes that handle requests.python manage.py startapp <app_name>.urls.py for the new app.