To start off create a new folder for the Django project and move into it
Here I called django-quick-start the main folder that will hold the project. Pay attention, this is not the actual Django project, but just its “home”. Once inside the new folder create a Python virtual environment and activate it (note, these are two distinct commands)
Pay attention again: django_quick_start now is the actual Django project created inside the django-quick-start folder. The name of this home folder doesn’t matter, but Django projects cannot have dashes in the name. That’s the reason for these underscores in django_quick_start.
Pay also attention to the dot in django-admin startproject django_quick_start … With the dot we can avoid additional folder nesting.

#django #django application #create a django

How to create a Django project and a Django application
2.30 GEEK