Django Admin Basics
Do the Migration
1python3 manage.py makemigrations
2python3 manage.py migrate
Create the Admin Account
1python3 manage.py createsuperuser
Run server
1python3 manage.py runserver
Visit http://127.0.0.1:8000/admin and use the account created earlier.