Create Django Project
django-admin startproject movies
Creates a django project in a nested folder called movies
Create Django Project in current directory
django-admin startproject movies .
creates the django project in the current directory.
Creates App Within Project
django-admin startapp api
Your Prject can have multiple apps in one project. running start app creates a new app called api
Run Django Server
python3 manage.py runserver
Runs the Django server