.. _cookbook_manage_py: .. index:: single: Cookbook manage.py COOKBOOK 2: Wichtige Befehle mit manage.py ******************************************************** Eine Übersicht über die wichtigsten Befehle mit dem Helfertool ``manage.py``. Entwicklungsserver starten ------------------------------------------------ .. code-block:: bash python manage.py runserver Superuser anlegen ------------------------------------------------ .. code-block:: bash python manage.py createsuperuser Zustand prüfen ------------------------------------------------ .. code-block:: bash python manage.py check Für alle Apps Migrationsdateien erstellen ------------------------------------------------ .. code-block:: bash python manage.py makemigrations Für eine bestimmte App Migrationsdateien erstellen --------------------------------------------------- .. code-block:: bash python manage.py makemigrations events Für alle Apps Migrationen durchführen ------------------------------------------------ .. code-block:: bash python manage.py migrate Für eine bestimmte App Migrationen durchführen ------------------------------------------------ .. code-block:: bash python manage.py migrate events Das erstellte SQL untersuchen ------------------------------------------------ Der numerische Wert am Ende bezeichnet die jeweilige Migration. .. code-block:: bash python manage.py sqlmigrate events 0005 Alle erstellen Migrationen ansehen ------------------------------------------------ .. code-block:: bash python manage.py showmigrations Die interaktive Shell öffnen ------------------------------------------------ .. code-block:: bash python manage.py shell Die interaktive Daten speichern und laden ------------------------------------------------ .. code-block:: bash python manage.py dumpdata events --indent 4 > events/fixtures/events.json python manage.py loaddata events/fixtures/events.json