Django CLI Commands Cheat Sheet

  1. Starting a Project
  2. Running the Development Server
  3. Creating an App
  4. Creating Database Migrations
  5. Applying Database Migrations
  6. Creating a Superuser for the Admin Site
  7. Collecting Static Files
  8. Running Tests
  9. Accessing the Django Shell
  10. Checking for Problems
  11. Creating Custom Management Commands
  12. Database Shell Access
  13. Viewing SQL Migrations
  14. Loading Data from Fixtures
  15. Dumping Data to a Fixture

Remember to replace projectname, appname, migrationname, and fixturename with your actual project, app, migration, and fixture names respectively. These commands form the backbone of your interactions with Django's manage.py utility and are essential for efficient Django development.