
Common Django Commands
Create Super User
If you delete your database, you won't be able to login back. Just recreate your superuser
py manage.py createsuperMigrations
To convert your models to Database Tables, you need to create and apply migrations.
This will create the required migrations
py manage.py makemigrationsThis will apply the created migrations
py manage.py migrateRunning the Server
You can run the server using:
py manage.py runserver