Skip to content

Instantly share code, notes, and snippets.

@mano8
Last active May 25, 2023 21:47
Show Gist options
  • Save mano8/b36792893f014a921a1408a9618729a4 to your computer and use it in GitHub Desktop.
Save mano8/b36792893f014a921a1408a9618729a4 to your computer and use it in GitHub Desktop.

Django Cheat Sheet Commands

Django shell:

Project

Create project:

Create App:
python manage.py startapp app_name

Create Super User:
python manage.py createsuperuser

Models

Make migration:

Migrate:

Create Fixtures from model (--indent X is optional.):
source
python manage.py dumpdata app.model_name --indent 4 > fixtures/model_name.json

Load fixtures to model:
source
python manage.py loaddata fixtures/model_name.json --app app.model_name

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment