Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Django Notes
- ## Create Project
- `django-admin startproject project_name`
- ## Create App
- make sure that you are in the project folder (the one that has manage.py)
- `python manage.py startapp app_name`
- ## Database related
- Listing changes to be done on the database
- `python manage.py makemigrations`
- Making the changes from migrations onto the database
- `python manage.py migrate`
- ## Admin Panel Related
- creating a user that can access admin panel
- `python manage.py createsuperuser`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement