==================================``django-admin`` and ``manage.py``==================================``django-admin`` is Django's command-line utility for administrative tasks.This document outlines all it can do.In addition, ``manage.py`` is automatically created in each Django project. Itdoes the same thing as ``django-admin`` but also sets the:envvar:`DJANGO_SETTINGS_MODULE` environment variable so that it points to yourproject's ``settings.py`` file.The ``django-admin`` script should be on your system path if you installedDjango via ``pip``. If it's not in your path, ensure you have your virtualenvironment activated.Generally, when working on a single Django project, it's easier to use``manage.py`` than ``django-admin``. If you need to switch between multipleDjango settings files, use ``django-admin`` with:envvar:`DJANGO_SETTINGS_MODULE` or the :option:`--settings` command lineoption.The command-line examples throughout this document use ``django-admin`` tobe consistent, but any example can use ``manage.py`` or ``python -m django``just as well.Usage=====.. console::$ django-admin <command> [options]$ manage.py <command> [options]$ python -m django <command> [options]``command`` should be one of the commands listed in this document.``options``, which is optional, should be zero or more of the options availablefor the given command.Getting runtime help--------------------.. django-admin:: helpRun ``django-admin help`` to display usage information and a list of thecommands provided by each application.Run ``django-admin help --commands`` to display a list of all availablecommands.Run ``django-admin help <command>`` to display a description of the givencommand and a list of its available options.App names---------Many commands take a list of "app names." An "app name" is the basename ofthe package containing your models. For example, if your :setting:`INSTALLED_APPS`contains the string ``'mysite.blog'``, the app name is ``blog``.Determining the version-----------------------.. django-admin:: versionRun ``django-admin version`` to display the current Django version.The output follows the schema described in :pep:`440`::1.4.dev170261.4a11.4Displaying debug output-----------------------.. program:: NoneUse :option:`--verbosity`, where it is supported, to specify the amount ofnotification and debug information that ``django-admin`` prints to the console.Available commands==================``check``---------.. django-admin:: check [app_label [app_label ...]]Uses the :doc:`system check framework </ref/checks>` to inspect the entireDjango project for common problems.By default, all apps will be checked. You can check a subset of apps byproviding a list of app labels as arguments::django-admin check auth admin myapp.. django-admin-option:: --tag TAGS, -t TAGSThe system check framework performs many different types of checks that are:ref:`categorized with tags <system-check-builtin-tags>`. You can use thesetags to restrict the checks performed to just those in a particular category.For example, to perform only models and compatibility checks, run::django-admin check --tag models --tag compatibility.. django-admin-option:: --database DATABASESpecifies the database to run checks requiring database access::django-admin check --database default --database otherBy default, these checks will not be run... django-admin-option:: --list-tagsLists all available tags... django-admin-option:: --deployActivates some additional checks that are only relevant in a deployment setting.You can use this option in your local development environment, but since yourlocal development settings module may not have many of your production settings,you will probably want to point the ``check`` command at a different settingsmodule, either by setting the :envvar:`DJANGO_SETTINGS_MODULE` environmentvariable, or by passing the ``--settings`` option::django-admin check --deploy --settings=production_settingsOr you could run it directly on a production or staging deployment to verifythat the correct settings are in use (omitting ``--settings``). You could evenmake it part of your integration test suite... django-admin-option:: --fail-level {CRITICAL,ERROR,WARNING,INFO,DEBUG}Specifies the message level that will cause the command to exit with a non-zerostatus. Default is ``ERROR``.``compilemessages``-------------------.. django-admin:: compilemessagesCompiles ``.po`` files created by :djadmin:`makemessages` to ``.mo`` files foruse with the built-in gettext support. See :doc:`/topics/i18n/index`... django-admin-option:: --locale LOCALE, -l LOCALESpecifies the locale(s) to process. If not provided, all locales are processed... django-admin-option:: --exclude EXCLUDE, -x EXCLUDESpecifies the locale(s) to exclude from processing. If not provided, no localesare excluded... django-admin-option:: --use-fuzzy, -fIncludes `fuzzy translations`_ into compiled files.Example usage::django-admin compilemessages --locale=pt_BRdjango-admin compilemessages --locale=pt_BR --locale=fr -fdjango-admin compilemessages -l pt_BRdjango-admin compilemessages -l pt_BR -l fr --use-fuzzydjango-admin compilemessages --exclude=pt_BRdjango-admin compilemessages --exclude=pt_BR --exclude=frdjango-admin compilemessages -x pt_BRdjango-admin compilemessages -x pt_BR -x fr.. _fuzzy translations: https://www.gnu.org/software/gettext/manual/html_node/Fuzzy-Entries.html.. django-admin-option:: --ignore PATTERN, -i PATTERNIgnores directories matching the given :mod:`glob`-style pattern. Usemultiple times to ignore more.Example usage::django-admin compilemessages --ignore=cache --ignore=outdated/*/locale``createcachetable``--------------------.. django-admin:: createcachetableCreates the cache tables for use with the database cache backend using theinformation from your settings file. See :doc:`/topics/cache` for moreinformation... django-admin-option:: --database DATABASESpecifies the database in which the cache table(s) will be created. Defaults to``default``... django-admin-option:: --dry-runPrints the SQL that would be run without actually running it, so you cancustomize it or use the migrations framework.``dbshell``-----------.. django-admin:: dbshellRuns the command-line client for the database engine specified in your:setting:`ENGINE <DATABASE-ENGINE>` setting, with the connection parametersspecified in your :setting:`USER`, :setting:`PASSWORD`, etc., settings.* For PostgreSQL, this runs the ``psql`` command-line client.* For MySQL, this runs the ``mysql`` command-line client.* For SQLite, this runs the ``sqlite3`` command-line client.* For Oracle, this runs the ``sqlplus`` command-line client.This command assumes the programs are on your ``PATH`` so that a call tothe program name (``psql``, ``mysql``, ``sqlite3``, ``sqlplus``) will find theprogram in the right place. There's no way to specify the location of theprogram manually... django-admin-option:: --database DATABASESpecifies the database onto which to open a shell. Defaults to ``default``... django-admin-option:: -- ARGUMENTSAny arguments following a ``--`` divider will be passed on to the underlyingcommand-line client. For example, with PostgreSQL you can use the ``psql``command's ``-c`` flag to execute a raw SQL query directly:.. console::$ django-admin dbshell -- -c 'select current_user'current_user--------------postgres(1 row)On MySQL/MariaDB, you can do this with the ``mysql`` command's ``-e`` flag:.. console::$ django-admin dbshell -- -e "select user()"+----------------------+| user() |+----------------------+| djangonaut@localhost |+----------------------+.. note::Be aware that not all options set in the :setting:`OPTIONS` part of yourdatabase configuration in :setting:`DATABASES` are passed to thecommand-line client, e.g. ``'isolation_level'``.``diffsettings``----------------.. django-admin:: diffsettingsDisplays differences between the current settings file and Django's defaultsettings (or another settings file specified by :option:`--default`).Settings that don't appear in the defaults are followed by ``"###"``. Forexample, the default settings don't define :setting:`ROOT_URLCONF`, so:setting:`ROOT_URLCONF` is followed by ``"###"`` in the output of``diffsettings``... django-admin-option:: --allDisplays all settings, even if they have Django's default value. Such settingsare prefixed by ``"###"``... django-admin-option:: --default MODULEThe settings module to compare the current settings against. Leave empty tocompare against Django's default settings... django-admin-option:: --output {hash,unified}Specifies the output format. Available values are ``hash`` and ``unified``.``hash`` is the default mode that displays the output that's described above.``unified`` displays the output similar to ``diff -u``. Default settings areprefixed with a minus sign, followed by the changed setting prefixed with aplus sign.``dumpdata``------------.. django-admin:: dumpdata [app_label[.ModelName] [app_label[.ModelName] ...]]Outputs to standard output all data in the database associated with the namedapplication(s).If no application name is provided, all installed applications will be dumped.The output of ``dumpdata`` can be used as input for :djadmin:`loaddata`.Note that ``dumpdata`` uses the default manager on the model for selecting therecords to dump. If you're using a :ref:`custom manager <custom-managers>` asthe default manager and it filters some of the available records, not all of theobjects will be dumped... django-admin-option:: --all, -aUses Django's base manager, dumping records which might otherwise be filteredor modified by a custom manager... django-admin-option:: --format FORMATSpecifies the serialization format of the output. Defaults to JSON. Supportedformats are listed in :ref:`serialization-formats`... django-admin-option:: --indent INDENTSpecifies the number of indentation spaces to use in the output. Defaults to``None`` which displays all data on single line... django-admin-option:: --exclude EXCLUDE, -e EXCLUDEPrevents specific applications or models (specified in the form of``app_label.ModelName``) from being dumped. If you specify a model name, thenonly that model will be excluded, rather than the entire application. You canalso mix application names and model names.If you want to exclude multiple applications, pass ``--exclude`` more thanonce::django-admin dumpdata --exclude=auth --exclude=contenttypes.. django-admin-option:: --database DATABASESpecifies the database from which data will be dumped. Defaults to ``default``... django-admin-option:: --natural-foreignUses the ``natural_key()`` model method to serialize any foreign key andmany-to-many relationship to objects of the type that defines the method. Ifyou're dumping ``contrib.auth`` ``Permission`` objects or``contrib.contenttypes`` ``ContentType`` objects, you should probably use thisflag. See the :ref:`natural keys <topics-serialization-natural-keys>`documentation for more details on this and the next option... django-admin-option:: --natural-primaryOmits the primary key in the serialized data of this object since it can becalculated during deserialization... django-admin-option:: --pks PRIMARY_KEYSOutputs only the objects specified by a comma separated list of primary keys.This is only available when dumping one model. By default, all the records ofthe model are output... django-admin-option:: --output OUTPUT, -o OUTPUTSpecifies a file to write the serialized data to. By default, the data goes tostandard output.When this option is set and ``--verbosity`` is greater than 0 (the default), aprogress bar is shown in the terminal.Fixtures compression~~~~~~~~~~~~~~~~~~~~The output file can be compressed with one of the ``bz2``, ``gz``, ``lzma``, or``xz`` formats by ending the filename with the corresponding extension.For example, to output the data as a compressed JSON file::django-admin dumpdata -o mydata.json.gz``flush``---------.. django-admin:: flushRemoves all data from the database and re-executes any post-synchronizationhandlers. The table of which migrations have been applied is not cleared.If you would rather start from an empty database and rerun all migrations, youshould drop and recreate the database and then run :djadmin:`migrate` instead... django-admin-option:: --noinput, --no-inputSuppresses all user prompts... django-admin-option:: --database DATABASESpecifies the database to flush. Defaults to ``default``.``inspectdb``-------------.. django-admin:: inspectdb [table [table ...]]Introspects the database tables in the database pointed-to by the:setting:`NAME` setting and outputs a Django model module (a ``models.py``file) to standard output.You may choose what tables or views to inspect by passing their names asarguments. If no arguments are provided, models are created for views only ifthe :option:`--include-views` option is used. Models for partition tables arecreated on PostgreSQL if the :option:`--include-partitions` option is used.Use this if you have a legacy database with which you'd like to use Django.The script will inspect the database and create a model for each table withinit.As you might expect, the created models will have an attribute for every fieldin the table. Note that ``inspectdb`` has a few special cases in its field-nameoutput:* If ``inspectdb`` cannot map a column's type to a model field type, it'lluse ``TextField`` and will insert the Python comment``'This field type is a guess.'`` next to the field in the generatedmodel. The recognized fields may depend on apps listed in:setting:`INSTALLED_APPS`. For example, :mod:`django.contrib.postgres` addsrecognition for several PostgreSQL-specific field types.* If the database column name is a Python reserved word (such as``'pass'``, ``'class'`` or ``'for'``), ``inspectdb`` will append``'_field'`` to the attribute name. For example, if a table has a column``'for'``, the generated model will have a field ``'for_field'``, withthe ``db_column`` attribute set to ``'for'``. ``inspectdb`` will insertthe Python comment``'Field renamed because it was a Python reserved word.'`` next to thefield.This feature is meant as a shortcut, not as definitive model generation. Afteryou run it, you'll want to look over the generated models yourself to makecustomizations. In particular, you'll need to rearrange models' order, so thatmodels that refer to other models are ordered properly.Django doesn't create database defaults when a:attr:`~django.db.models.Field.default` is specified on a model field.Similarly, database defaults aren't translated to model field defaults ordetected in any fashion by ``inspectdb``.By default, ``inspectdb`` creates unmanaged models. That is, ``managed = False``in the model's ``Meta`` class tells Django not to manage each table's creation,modification, and deletion. If you do want to allow Django to manage thetable's lifecycle, you'll need to change the:attr:`~django.db.models.Options.managed` option to ``True`` (or removeit because ``True`` is its default value).Database-specific notes~~~~~~~~~~~~~~~~~~~~~~~Oracle^^^^^^* Models are created for materialized views if :option:`--include-views` isused.PostgreSQL^^^^^^^^^^* Models are created for foreign tables.* Models are created for materialized views if:option:`--include-views` is used.* Models are created for partition tables if:option:`--include-partitions` is used... django-admin-option:: --database DATABASESpecifies the database to introspect. Defaults to ``default``... django-admin-option:: --include-partitionsIf this option is provided, models are also created for partitions.Only support for PostgreSQL is implemented... django-admin-option:: --include-viewsIf this option is provided, models are also created for database views.``loaddata``------------.. django-admin:: loaddata fixture [fixture ...]Searches for and loads the contents of the named fixture into the database... django-admin-option:: --database DATABASESpecifies the database into which the data will be loaded. Defaults to``default``... django-admin-option:: --ignorenonexistent, -iIgnores fields and models that may have been removed since the fixture wasoriginally generated... django-admin-option:: --app APP_LABELSpecifies a single app to look for fixtures in rather than looking in all apps... django-admin-option:: --format FORMATSpecifies the :ref:`serialization format <serialization-formats>` (e.g.,``json`` or ``xml``) for fixtures :ref:`read from stdin<loading-fixtures-stdin>`... django-admin-option:: --exclude EXCLUDE, -e EXCLUDEExcludes loading the fixtures from the given applications and/or models (in theform of ``app_label`` or ``app_label.ModelName``). Use the option multipletimes to exclude more than one app or model.What's a "fixture"?~~~~~~~~~~~~~~~~~~~A *fixture* is a collection of files that contain the serialized contents ofthe database. Each fixture has a unique name, and the files that comprise thefixture can be distributed over multiple directories, in multiple applications.Django will search in three locations for fixtures:1. In the ``fixtures`` directory of every installed application2. In any directory named in the :setting:`FIXTURE_DIRS` setting3. In the literal path named by the fixtureDjango will load any and all fixtures it finds in these locations that matchthe provided fixture names.If the named fixture has a file extension, only fixtures of that typewill be loaded. For example::django-admin loaddata mydata.jsonwould only load JSON fixtures called ``mydata``. The fixture extensionmust correspond to the registered name of a:ref:`serializer <serialization-formats>` (e.g., ``json`` or ``xml``).If you omit the extensions, Django will search all available fixture typesfor a matching fixture. For example::django-admin loaddata mydatawould look for any fixture of any fixture type called ``mydata``. If a fixturedirectory contained ``mydata.json``, that fixture would be loadedas a JSON fixture.The fixtures that are named can include directory components. Thesedirectories will be included in the search path. For example::django-admin loaddata foo/bar/mydata.jsonwould search ``<app_label>/fixtures/foo/bar/mydata.json`` for each installedapplication, ``<dirname>/foo/bar/mydata.json`` for each directory in:setting:`FIXTURE_DIRS`, and the literal path ``foo/bar/mydata.json``.When fixture files are processed, the data is saved to the database as is.Model defined :meth:`~django.db.models.Model.save` methods are not called, andany :data:`~django.db.models.signals.pre_save` or:data:`~django.db.models.signals.post_save` signals will be called with``raw=True`` since the instance only contains attributes that are local to themodel. You may, for example, want to disable handlers that accessrelated fields that aren't present during fixture loading and would otherwiseraise an exception::from django.db.models.signals import post_savefrom .models import MyModeldef my_handler(**kwargs):# disable the handler during fixture loadingif kwargs['raw']:return...post_save.connect(my_handler, sender=MyModel)You could also write a decorator to encapsulate this logic::from functools import wrapsdef disable_for_loaddata(signal_handler):"""Decorator that turns off signal handlers when loading fixture data."""@wraps(signal_handler)def wrapper(*args, **kwargs):if kwargs['raw']:returnsignal_handler(*args, **kwargs)return wrapper@disable_for_loaddatadef my_handler(**kwargs):...Just be aware that this logic will disable the signals whenever fixtures aredeserialized, not just during ``loaddata``.Note that the order in which fixture files are processed is undefined. However,all fixture data is installed as a single transaction, so data inone fixture can reference data in another fixture. If the database backendsupports row-level constraints, these constraints will be checked at theend of the transaction.The :djadmin:`dumpdata` command can be used to generate input for ``loaddata``.Compressed fixtures~~~~~~~~~~~~~~~~~~~Fixtures may be compressed in ``zip``, ``gz``, ``bz2``, ``lzma``, or ``xz``format. For example::django-admin loaddata mydata.jsonwould look for any of ``mydata.json``, ``mydata.json.zip``, ``mydata.json.gz``,``mydata.json.bz2``, ``mydata.json.lzma``, or ``mydata.json.xz``. The firstfile contained within a compressed archive is used.Note that if two fixtures with the same name but differentfixture type are discovered (for example, if ``mydata.json`` and``mydata.xml.gz`` were found in the same fixture directory), fixtureinstallation will be aborted, and any data installed in the call to``loaddata`` will be removed from the database... admonition:: MySQL with MyISAM and fixturesThe MyISAM storage engine of MySQL doesn't support transactions orconstraints, so if you use MyISAM, you won't get validation of fixturedata, or a rollback if multiple transaction files are found.Database-specific fixtures~~~~~~~~~~~~~~~~~~~~~~~~~~If you're in a multi-database setup, you might have fixture data thatyou want to load onto one database, but not onto another. In thissituation, you can add a database identifier into the names of your fixtures.For example, if your :setting:`DATABASES` setting has a 'users' databasedefined, name the fixture ``mydata.users.json`` or``mydata.users.json.gz`` and the fixture will only be loaded when youspecify you want to load data into the ``users`` database... _loading-fixtures-stdin:Loading fixtures from ``stdin``~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~You can use a dash as the fixture name to load input from ``sys.stdin``. Forexample::django-admin loaddata --format=json -When reading from ``stdin``, the :option:`--format <loaddata --format>` optionis required to specify the :ref:`serialization format <serialization-formats>`of the input (e.g., ``json`` or ``xml``).Loading from ``stdin`` is useful with standard input and output redirections.For example::django-admin dumpdata --format=json --database=test app_label.ModelName | django-admin loaddata --format=json --database=prod -``makemessages``----------------.. django-admin:: makemessagesRuns over the entire source tree of the current directory and pulls out allstrings marked for translation. It creates (or updates) a message file in theconf/locale (in the Django tree) or locale (for project and application)directory. After making changes to the messages files you need to compile themwith :djadmin:`compilemessages` for use with the builtin gettext support. Seethe :ref:`i18n documentation <how-to-create-language-files>` for details.This command doesn't require configured settings. However, when settings aren'tconfigured, the command can't ignore the :setting:`MEDIA_ROOT` and:setting:`STATIC_ROOT` directories or include :setting:`LOCALE_PATHS`... django-admin-option:: --all, -aUpdates the message files for all available languages... django-admin-option:: --extension EXTENSIONS, -e EXTENSIONSSpecifies a list of file extensions to examine (default: ``html``, ``txt``,``py`` or ``js`` if :option:`--domain` is ``js``).Example usage::django-admin makemessages --locale=de --extension xhtmlSeparate multiple extensions with commas or use ``-e`` or ``--extension``multiple times::django-admin makemessages --locale=de --extension=html,txt --extension xml.. django-admin-option:: --locale LOCALE, -l LOCALESpecifies the locale(s) to process... django-admin-option:: --exclude EXCLUDE, -x EXCLUDESpecifies the locale(s) to exclude from processing. If not provided, no localesare excluded.Example usage::django-admin makemessages --locale=pt_BRdjango-admin makemessages --locale=pt_BR --locale=frdjango-admin makemessages -l pt_BRdjango-admin makemessages -l pt_BR -l frdjango-admin makemessages --exclude=pt_BRdjango-admin makemessages --exclude=pt_BR --exclude=frdjango-admin makemessages -x pt_BRdjango-admin makemessages -x pt_BR -x fr.. django-admin-option:: --domain DOMAIN, -d DOMAINSpecifies the domain of the messages files. Supported options are:* ``django`` for all ``*.py``, ``*.html`` and ``*.txt`` files (default)* ``djangojs`` for ``*.js`` files.. django-admin-option:: --symlinks, -sFollows symlinks to directories when looking for new translation strings.Example usage::django-admin makemessages --locale=de --symlinks.. django-admin-option:: --ignore PATTERN, -i PATTERNIgnores files or directories matching the given :mod:`glob`-style pattern. Usemultiple times to ignore more.These patterns are used by default: ``'CVS'``, ``'.*'``, ``'*~'``, ``'*.pyc'``.Example usage::django-admin makemessages --locale=en_US --ignore=apps/* --ignore=secret/*.html.. django-admin-option:: --no-default-ignoreDisables the default values of ``--ignore``... django-admin-option:: --no-wrapDisables breaking long message lines into several lines in language files... django-admin-option:: --no-locationSuppresses writing '``#: filename:line``’ comment lines in language files.Using this option makes it harder for technically skilled translators tounderstand each message's context... django-admin-option:: --add-location [{full,file,never}]Controls ``#: filename:line`` comment lines in language files. If the optionis:* ``full`` (the default if not given): the lines include both file name andline number.* ``file``: the line number is omitted.* ``never``: the lines are suppressed (same as :option:`--no-location`).Requires ``gettext`` 0.19 or newer... django-admin-option:: --keep-potPrevents deleting the temporary ``.pot`` files generated before creating the``.po`` file. This is useful for debugging errors which may prevent the finallanguage files from being created... seealso::See :ref:`customizing-makemessages` for instructions on how to customizethe keywords that :djadmin:`makemessages` passes to ``xgettext``.``makemigrations``------------------.. django-admin:: makemigrations [app_label [app_label ...]]Creates new migrations based on the changes detected to your models.Migrations, their relationship with apps and more are covered in depth in:doc:`the migrations documentation</topics/migrations>`.Providing one or more app names as arguments will limit the migrations createdto the app(s) specified and any dependencies needed (the table at the other endof a ``ForeignKey``, for example).To add migrations to an app that doesn't have a ``migrations`` directory, run``makemigrations`` with the app's ``app_label``... django-admin-option:: --noinput, --no-inputSuppresses all user prompts. If a suppressed prompt cannot be resolvedautomatically, the command will exit with error code 3... django-admin-option:: --emptyOutputs an empty migration for the specified apps, for manual editing. This isfor advanced users and should not be used unless you are familiar with themigration format, migration operations, and the dependencies between yourmigrations... django-admin-option:: --dry-runShows what migrations would be made without actually writing any migrationsfiles to disk. Using this option along with ``--verbosity 3`` will also showthe complete migrations files that would be written... django-admin-option:: --mergeEnables fixing of migration conflicts... django-admin-option:: --name NAME, -n NAMEAllows naming the generated migration(s) instead of using a generated name. Thename must be a valid Python :ref:`identifier <python:identifiers>`... django-admin-option:: --no-headerGenerate migration files without Django version and timestamp header... django-admin-option:: --checkMakes ``makemigrations`` exit with a non-zero status when model changes withoutmigrations are detected... django-admin-option:: --scriptable.. versionadded:: 4.1Diverts log output and input prompts to ``stderr``, writing only paths ofgenerated migration files to ``stdout``.``migrate``-----------.. django-admin:: migrate [app_label] [migration_name]Synchronizes the database state with the current set of models and migrations.Migrations, their relationship with apps and more are covered in depth in:doc:`the migrations documentation</topics/migrations>`.The behavior of this command changes depending on the arguments provided:* No arguments: All apps have all of their migrations run.* ``<app_label>``: The specified app has its migrations run, up to the mostrecent migration. This may involve running other apps' migrations too, dueto dependencies.* ``<app_label> <migrationname>``: Brings the database schema to a state wherethe named migration is applied, but no later migrations in the same app areapplied. This may involve unapplying migrations if you have previouslymigrated past the named migration. You can use a prefix of the migrationname, e.g. ``0001``, as long as it's unique for the given app name. Use thename ``zero`` to migrate all the way back i.e. to revert all appliedmigrations for an app... warning::When unapplying migrations, all dependent migrations will also beunapplied, regardless of ``<app_label>``. You can use ``--plan`` to checkwhich migrations will be unapplied... django-admin-option:: --database DATABASESpecifies the database to migrate. Defaults to ``default``... django-admin-option:: --fakeMarks the migrations up to the target one (following the rules above) asapplied, but without actually running the SQL to change your database schema.This is intended for advanced users to manipulate thecurrent migration state directly if they're manually applying changes;be warned that using ``--fake`` runs the risk of putting the migration statetable into a state where manual recovery will be needed to make migrationsrun correctly... django-admin-option:: --fake-initialAllows Django to skip an app's initial migration if all database tables withthe names of all models created by all:class:`~django.db.migrations.operations.CreateModel` operations in thatmigration already exist. This option is intended for use when first runningmigrations against a database that preexisted the use of migrations. Thisoption does not, however, check for matching database schema beyond matchingtable names and so is only safe to use if you are confident that your existingschema matches what is recorded in your initial migration... django-admin-option:: --planShows the migration operations that will be performed for the given ``migrate``command... django-admin-option:: --run-syncdbAllows creating tables for apps without migrations. While this isn'trecommended, the migrations framework is sometimes too slow on large projectswith hundreds of models... django-admin-option:: --noinput, --no-inputSuppresses all user prompts. An example prompt is asking about removing stalecontent types... django-admin-option:: --checkMakes ``migrate`` exit with a non-zero status when unapplied migrations aredetected... django-admin-option:: --prune.. versionadded:: 4.1Deletes nonexistent migrations from the ``django_migrations`` table. This isuseful when migration files replaced by a squashed migration have been removed.See :ref:`migration-squashing` for more details.``optimizemigration``---------------------.. versionadded:: 4.1.. django-admin:: optimizemigration app_label migration_nameOptimizes the operations for the named migration and overrides the existingfile. If the migration contains functions that must be manually copied, thecommand creates a new migration file suffixed with ``_optimized`` that is meantto replace the named migration... django-admin-option:: --checkMakes ``optimizemigration`` exit with a non-zero status when a migration can beoptimized.``runserver``-------------.. django-admin:: runserver [addrport]Starts a lightweight development web server on the local machine. By default,the server runs on port 8000 on the IP address ``127.0.0.1``. You can pass in anIP address and port number explicitly.If you run this script as a user with normal privileges (recommended), youmight not have access to start a port on a low port number. Low port numbersare reserved for the superuser (root).This server uses the WSGI application object specified by the:setting:`WSGI_APPLICATION` setting.DO NOT USE THIS SERVER IN A PRODUCTION SETTING. It has not gone throughsecurity audits or performance tests. (And that's how it's gonna stay. We're inthe business of making web frameworks, not web servers, so improving thisserver to be able to handle a production environment is outside the scope ofDjango.)The development server automatically reloads Python code for each request, asneeded. You don't need to restart the server for code changes to take effect.However, some actions like adding files don't trigger a restart, so you'llhave to restart the server in these cases.If you're using Linux or MacOS and install both `pywatchman`_ and the`Watchman`_ service, kernel signals will be used to autoreload the server(rather than polling file modification timestamps each second). This offersbetter performance on large projects, reduced response time after code changes,more robust change detection, and a reduction in power usage. Django supports``pywatchman`` 1.2.0 and higher... admonition:: Large directories with many files may cause performance issuesWhen using Watchman with a project that includes large non-Pythondirectories like ``node_modules``, it's advisable to ignore this directoryfor optimal performance. See the `watchman documentation`_ for informationon how to do this... admonition:: Watchman timeout.. envvar:: DJANGO_WATCHMAN_TIMEOUTThe default timeout of ``Watchman`` client is 5 seconds. You can change itby setting the :envvar:`DJANGO_WATCHMAN_TIMEOUT` environment variable... _Watchman: https://facebook.github.io/watchman/.. _pywatchman: https://pypi.org/project/pywatchman/.. _watchman documentation: https://facebook.github.io/watchman/docs/config#ignore_dirsWhen you start the server, and each time you change Python code while theserver is running, the system check framework will check your entire Djangoproject for some common errors (see the :djadmin:`check` command). If anyerrors are found, they will be printed to standard output. You can use the``--skip-checks`` option to skip running system checks.You can run as many concurrent servers as you want, as long as they're onseparate ports by executing ``django-admin runserver`` more than once.Note that the default IP address, ``127.0.0.1``, is not accessible from othermachines on your network. To make your development server viewable to othermachines on the network, use its own IP address (e.g. ``192.168.2.1``), ``0``(shortcut for ``0.0.0.0``), ``0.0.0.0``, or ``::`` (with IPv6 enabled).You can provide an IPv6 address surrounded by brackets(e.g. ``[200a::1]:8000``). This will automatically enable IPv6 support.A hostname containing ASCII-only characters can also be used.If the :doc:`staticfiles</ref/contrib/staticfiles>` contrib app is enabled(default in new projects) the :djadmin:`runserver` command will be overriddenwith its own :ref:`runserver<staticfiles-runserver>` command.Logging of each request and response of the server is sent to the:ref:`django-server-logger` logger... django-admin-option:: --noreloadDisables the auto-reloader. This means any Python code changes you make whilethe server is running will *not* take effect if the particular Python moduleshave already been loaded into memory... django-admin-option:: --nothreadingDisables use of threading in the development server. The server ismultithreaded by default... django-admin-option:: --ipv6, -6Uses IPv6 for the development server. This changes the default IP address from``127.0.0.1`` to ``::1``... versionchanged:: 4.0Support for the ``--skip-checks`` option was added.Examples of using different ports and addresses~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Port 8000 on IP address ``127.0.0.1``::django-admin runserverPort 8000 on IP address ``1.2.3.4``::django-admin runserver 1.2.3.4:8000Port 7000 on IP address ``127.0.0.1``::django-admin runserver 7000Port 7000 on IP address ``1.2.3.4``::django-admin runserver 1.2.3.4:7000Port 8000 on IPv6 address ``::1``::django-admin runserver -6Port 7000 on IPv6 address ``::1``::django-admin runserver -6 7000Port 7000 on IPv6 address ``2001:0db8:1234:5678::9``::django-admin runserver [2001:0db8:1234:5678::9]:7000Port 8000 on IPv4 address of host ``localhost``::django-admin runserver localhost:8000Port 8000 on IPv6 address of host ``localhost``::django-admin runserver -6 localhost:8000Serving static files with the development server~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~By default, the development server doesn't serve any static files for your site(such as CSS files, images, things under :setting:`MEDIA_URL` and so forth). Ifyou want to configure Django to serve static media, read:doc:`/howto/static-files/index`.``sendtestemail``-----------------.. django-admin:: sendtestemail [email [email ...]]Sends a test email (to confirm email sending through Django is working) to therecipient(s) specified. For example::django-admin sendtestemail [email protected] [email protected]There are a couple of options, and you may use any combination of themtogether:.. django-admin-option:: --managersMails the email addresses specified in :setting:`MANAGERS` using:meth:`~django.core.mail.mail_managers()`... django-admin-option:: --adminsMails the email addresses specified in :setting:`ADMINS` using:meth:`~django.core.mail.mail_admins()`.``shell``---------.. django-admin:: shellStarts the Python interactive interpreter... django-admin-option:: --interface {ipython,bpython,python}, -i {ipython,bpython,python}Specifies the shell to use. By default, Django will use IPython_ or bpython_ ifeither is installed. If both are installed, specify which one you want like so:IPython::django-admin shell -i ipythonbpython::django-admin shell -i bpythonIf you have a "rich" shell installed but want to force use of the "plain"Python interpreter, use ``python`` as the interface name, like so::django-admin shell -i python.. _IPython: https://ipython.org/.. _bpython: https://bpython-interpreter.org/.. django-admin-option:: --nostartupDisables reading the startup script for the "plain" Python interpreter. Bydefault, the script pointed to by the :envvar:`PYTHONSTARTUP` environmentvariable or the ``~/.pythonrc.py`` script is read... django-admin-option:: --command COMMAND, -c COMMANDLets you pass a command as a string to execute it as Django, like so::django-admin shell --command="import django; print(django.__version__)"You can also pass code in on standard input to execute it. For example:.. code-block:: console$ django-admin shell <<EOF> import django> print(django.__version__)> EOFOn Windows, the REPL is output due to implementation limits of:func:`select.select` on that platform.``showmigrations``------------------.. django-admin:: showmigrations [app_label [app_label ...]]Shows all migrations in a project. You can choose from one of two formats:.. django-admin-option:: --list, -lLists all of the apps Django knows about, the migrations available for eachapp, and whether or not each migration is applied (marked by an ``[X]`` next tothe migration name). For a ``--verbosity`` of 2 and above, the applieddatetimes are also shown.Apps without migrations are also listed, but have ``(no migrations)`` printedunder them.This is the default output format... django-admin-option:: --plan, -pShows the migration plan Django will follow to apply migrations. Like``--list``, applied migrations are marked by an ``[X]``. For a ``--verbosity``of 2 and above, all dependencies of a migration will also be shown.``app_label``\s arguments limit the output, however, dependencies of providedapps may also be included... django-admin-option:: --database DATABASESpecifies the database to examine. Defaults to ``default``.``sqlflush``------------.. django-admin:: sqlflushPrints the SQL statements that would be executed for the :djadmin:`flush`command... django-admin-option:: --database DATABASESpecifies the database for which to print the SQL. Defaults to ``default``.``sqlmigrate``--------------.. django-admin:: sqlmigrate app_label migration_namePrints the SQL for the named migration. This requires an active databaseconnection, which it will use to resolve constraint names; this means you mustgenerate the SQL against a copy of the database you wish to later apply it on.Note that ``sqlmigrate`` doesn't colorize its output... django-admin-option:: --backwardsGenerates the SQL for unapplying the migration. By default, the SQL created isfor running the migration in the forwards direction... django-admin-option:: --database DATABASESpecifies the database for which to generate the SQL. Defaults to ``default``.``sqlsequencereset``--------------------.. django-admin:: sqlsequencereset app_label [app_label ...]Prints the SQL statements for resetting sequences for the given app name(s).Sequences are indexes used by some database engines to track the next availablenumber for automatically incremented fields.Use this command to generate SQL which will fix cases where a sequence is outof sync with its automatically incremented field data... django-admin-option:: --database DATABASESpecifies the database for which to print the SQL. Defaults to ``default``.``squashmigrations``--------------------.. django-admin:: squashmigrations app_label [start_migration_name] migration_nameSquashes the migrations for ``app_label`` up to and including ``migration_name``down into fewer migrations, if possible. The resulting squashed migrationscan live alongside the unsquashed ones safely. For more information,please read :ref:`migration-squashing`.When ``start_migration_name`` is given, Django will only include migrationsstarting from and including this migration. This helps to mitigate thesquashing limitation of :class:`~django.db.migrations.operations.RunPython` and:class:`django.db.migrations.operations.RunSQL` migration operations... django-admin-option:: --no-optimizeDisables the optimizer when generating a squashed migration. By default, Djangowill try to optimize the operations in your migrations to reduce the size ofthe resulting file. Use this option if this process is failing or creatingincorrect migrations, though please also file a Django bug report about thebehavior, as optimization is meant to be safe... django-admin-option:: --noinput, --no-inputSuppresses all user prompts... django-admin-option:: --squashed-name SQUASHED_NAMESets the name of the squashed migration. When omitted, the name is based on thefirst and last migration, with ``_squashed_`` in between... django-admin-option:: --no-headerGenerate squashed migration file without Django version and timestamp header.``startapp``------------.. django-admin:: startapp name [directory]Creates a Django app directory structure for the given app name in the currentdirectory or the given destination.By default, :source:`the new directory <django/conf/app_template>` contains a``models.py`` file and other app template files. If only the app name is given,the app directory will be created in the current working directory.If the optional destination is provided, Django will use that existingdirectory rather than creating a new one. You can use '.' to denote the currentworking directory.For example::django-admin startapp myapp /Users/jezdez/Code/myapp.. _custom-app-and-project-templates:.. django-admin-option:: --template TEMPLATEProvides the path to a directory with a custom app template file, or a path toan uncompressed archive (``.tar``) or a compressed archive (``.tar.gz``,``.tar.bz2``, ``.tar.xz``, ``.tar.lzma``, ``.tgz``, ``.tbz2``, ``.txz``,``.tlz``, ``.zip``) containing the app template files.For example, this would look for an app template in the given directory whencreating the ``myapp`` app::django-admin startapp --template=/Users/jezdez/Code/my_app_template myappDjango will also accept URLs (``http``, ``https``, ``ftp``) to compressedarchives with the app template files, downloading and extracting them on thefly.For example, taking advantage of GitHub's feature to expose repositories aszip files, you can use a URL like::django-admin startapp --template=https://github.com/githubuser/django-app-template/archive/main.zip myapp.. django-admin-option:: --extension EXTENSIONS, -e EXTENSIONSSpecifies which file extensions in the app template should be rendered with thetemplate engine. Defaults to ``py``... django-admin-option:: --name FILES, -n FILESSpecifies which files in the app template (in addition to those matching``--extension``) should be rendered with the template engine. Defaults to anempty list... django-admin-option:: --exclude DIRECTORIES, -x DIRECTORIES.. versionadded:: 4.0Specifies which directories in the app template should be excluded, in additionto ``.git`` and ``__pycache__``. If this option is not provided, directoriesnamed ``__pycache__`` or starting with ``.`` will be excluded.The :class:`template context <django.template.Context>` used for all matchingfiles is:- Any option passed to the ``startapp`` command (among the command's supportedoptions)- ``app_name`` -- the app name as passed to the command- ``app_directory`` -- the full path of the newly created app- ``camel_case_app_name`` -- the app name in camel case format- ``docs_version`` -- the version of the documentation: ``'dev'`` or ``'1.x'``- ``django_version`` -- the version of Django, e.g. ``'2.0.3'``.. _render_warning:.. warning::When the app template files are rendered with the Django templateengine (by default all ``*.py`` files), Django will also replace allstray template variables contained. For example, if one of the Python filescontains a docstring explaining a particular feature relatedto template rendering, it might result in an incorrect example.To work around this problem, you can use the :ttag:`templatetag`template tag to "escape" the various parts of the template syntax.In addition, to allow Python template files that contain Django templatelanguage syntax while also preventing packaging systems from trying tobyte-compile invalid ``*.py`` files, template files ending with ``.py-tpl``will be renamed to ``.py``.``startproject``----------------.. django-admin:: startproject name [directory]Creates a Django project directory structure for the given project name inthe current directory or the given destination.By default, :source:`the new directory <django/conf/project_template>` contains``manage.py`` and a project package (containing a ``settings.py`` and otherfiles).If only the project name is given, both the project directory and projectpackage will be named ``<projectname>`` and the project directorywill be created in the current working directory.If the optional destination is provided, Django will use that existingdirectory as the project directory, and create ``manage.py`` and the projectpackage within it. Use '.' to denote the current working directory.For example::django-admin startproject myproject /Users/jezdez/Code/myproject_repo.. django-admin-option:: --template TEMPLATESpecifies a directory, file path, or URL of a custom project template. See the:option:`startapp --template` documentation for examples and usage... django-admin-option:: --extension EXTENSIONS, -e EXTENSIONSSpecifies which file extensions in the project template should be rendered withthe template engine. Defaults to ``py``... django-admin-option:: --name FILES, -n FILESSpecifies which files in the project template (in addition to those matching``--extension``) should be rendered with the template engine. Defaults to anempty list... django-admin-option:: --exclude DIRECTORIES, -x DIRECTORIES.. versionadded:: 4.0Specifies which directories in the project template should be excluded, inaddition to ``.git`` and ``__pycache__``. If this option is not provided,directories named ``__pycache__`` or starting with ``.`` will be excluded.The :class:`template context <django.template.Context>` used is:- Any option passed to the ``startproject`` command (among the command'ssupported options)- ``project_name`` -- the project name as passed to the command- ``project_directory`` -- the full path of the newly created project- ``secret_key`` -- a random key for the :setting:`SECRET_KEY` setting- ``docs_version`` -- the version of the documentation: ``'dev'`` or ``'1.x'``- ``django_version`` -- the version of Django, e.g. ``'2.0.3'``Please also see the :ref:`rendering warning <render_warning>` as mentionedfor :djadmin:`startapp`.``test``--------.. django-admin:: test [test_label [test_label ...]]Runs tests for all installed apps. See :doc:`/topics/testing/index` for moreinformation... django-admin-option:: --failfastStops running tests and reports the failure immediately after a test fails... django-admin-option:: --testrunner TESTRUNNERControls the test runner class that is used to execute tests. This valueoverrides the value provided by the :setting:`TEST_RUNNER` setting... django-admin-option:: --noinput, --no-inputSuppresses all user prompts. A typical prompt is a warning about deleting anexisting test database.Test runner options~~~~~~~~~~~~~~~~~~~The ``test`` command receives options on behalf of the specified:option:`--testrunner`. These are the options of the default test runner::class:`~django.test.runner.DiscoverRunner`... django-admin-option:: --keepdbPreserves the test database between test runs. This has the advantage ofskipping both the create and destroy actions which can greatly decrease thetime to run tests, especially those in a large test suite. If the test databasedoes not exist, it will be created on the first run and then preserved for eachsubsequent run. Unless the :setting:`MIGRATE <TEST_MIGRATE>` test setting is``False``, any unapplied migrations will also be applied to the test databasebefore running the test suite... django-admin-option:: --shuffle [SEED].. versionadded:: 4.0Randomizes the order of tests before running them. This can help detect teststhat aren't properly isolated. The test order generated by this option is adeterministic function of the integer seed given. When no seed is passed, aseed is chosen randomly and printed to the console. To repeat a particular testorder, pass a seed. The test orders generated by this option preserve Django's:ref:`guarantees on test order <order-of-tests>`. They also keep tests groupedby test case class.The shuffled orderings also have a special consistency property useful whennarrowing down isolation issues. Namely, for a given seed and when running asubset of tests, the new order will be the original shuffling restricted to thesmaller set. Similarly, when adding tests while keeping the seed the same, theorder of the original tests will be the same in the new order... django-admin-option:: --reverse, -rSorts test cases in the opposite execution order. This may help in debuggingthe side effects of tests that aren't properly isolated. :ref:`Grouping by testclass <order-of-tests>` is preserved when using this option. This can be usedin conjunction with ``--shuffle`` to reverse the order for a particular seed... django-admin-option:: --debug-modeSets the :setting:`DEBUG` setting to ``True`` prior to running tests. This mayhelp troubleshoot test failures... django-admin-option:: --debug-sql, -dEnables :ref:`SQL logging <django-db-logger>` for failing tests. If``--verbosity`` is ``2``, then queries in passing tests are also output... django-admin-option:: --parallel [N].. envvar:: DJANGO_TEST_PROCESSESRuns tests in separate parallel processes. Since modern processors havemultiple cores, this allows running tests significantly faster.Using ``--parallel`` without a value, or with the value ``auto``, runs one testprocess per core according to :func:`multiprocessing.cpu_count()`. You canoverride this by passing the desired number of processes, e.g.``--parallel 4``, or by setting the :envvar:`DJANGO_TEST_PROCESSES` environmentvariable.Django distributes test cases — :class:`unittest.TestCase` subclasses — tosubprocesses. If there are fewer test cases than configured processes, Djangowill reduce the number of processes accordingly.Each process gets its own database. You must ensure that different test casesdon't access the same resources. For instance, test cases that touch thefilesystem should create a temporary directory for their own use... note::If you have test classes that cannot be run in parallel, you can use``SerializeMixin`` to run them sequentially. See :ref:`Enforce running testclasses sequentially <topics-testing-enforce-run-sequentially>`.This option requires the third-party ``tblib`` package to display tracebackscorrectly:.. code-block:: console$ python -m pip install tblibThis feature isn't available on Windows. It doesn't work with the Oracledatabase backend either.If you want to use :mod:`pdb` while debugging tests, you must disable parallelexecution (``--parallel=1``). You'll see something like ``bdb.BdbQuit`` if youdon't... warning::When test parallelization is enabled and a test fails, Django may beunable to display the exception traceback. This can make debuggingdifficult. If you encounter this problem, run the affected test withoutparallelization to see the traceback of the failure.This is a known limitation. It arises from the need to serialize objectsin order to exchange them between processes. See:ref:`python:pickle-picklable` for details... versionchanged:: 4.0Support for the value ``auto`` was added... option:: --tag TAGSRuns only tests :ref:`marked with the specified tags <topics-tagging-tests>`.May be specified multiple times and combined with :option:`test --exclude-tag`.Tests that fail to load are always considered matching... versionchanged:: 4.0In older versions, tests that failed to load did not match tags... option:: --exclude-tag EXCLUDE_TAGSExcludes tests :ref:`marked with the specified tags <topics-tagging-tests>`.May be specified multiple times and combined with :option:`test --tag`... django-admin-option:: -k TEST_NAME_PATTERNSRuns test methods and classes matching test name patterns, in the same way as:option:`unittest's -k option<unittest.-k>`. Can be specified multiple times... django-admin-option:: --pdbSpawns a ``pdb`` debugger at each test error or failure. If you have itinstalled, ``ipdb`` is used instead... django-admin-option:: --buffer, -bDiscards output (``stdout`` and ``stderr``) for passing tests, in the same wayas :option:`unittest's --buffer option<unittest.-b>`... django-admin-option:: --no-faulthandlerDjango automatically calls :func:`faulthandler.enable()` when starting thetests, which allows it to print a traceback if the interpreter crashes. Pass``--no-faulthandler`` to disable this behavior... django-admin-option:: --timingOutputs timings, including database setup and total run time.``testserver``--------------.. django-admin:: testserver [fixture [fixture ...]]Runs a Django development server (as in :djadmin:`runserver`) using data fromthe given fixture(s).For example, this command::django-admin testserver mydata.json...would perform the following steps:#. Create a test database, as described in :ref:`the-test-database`.#. Populate the test database with fixture data from the given fixtures.(For more on fixtures, see the documentation for :djadmin:`loaddata` above.)#. Runs the Django development server (as in :djadmin:`runserver`), pointed atthis newly created test database instead of your production database.This is useful in a number of ways:* When you're writing :doc:`unit tests </topics/testing/overview>` of how your viewsact with certain fixture data, you can use ``testserver`` to interact withthe views in a web browser, manually.* Let's say you're developing your Django application and have a "pristine"copy of a database that you'd like to interact with. You can dump yourdatabase to a fixture (using the :djadmin:`dumpdata` command, explainedabove), then use ``testserver`` to run your web application with that data.With this arrangement, you have the flexibility of messing up your datain any way, knowing that whatever data changes you're making are onlybeing made to a test database.Note that this server does *not* automatically detect changes to your Pythonsource code (as :djadmin:`runserver` does). It does, however, detect changes totemplates... django-admin-option:: --addrport ADDRPORTSpecifies a different port, or IP address and port, from the default of``127.0.0.1:8000``. This value follows exactly the same format and servesexactly the same function as the argument to the :djadmin:`runserver` command.Examples:To run the test server on port 7000 with ``fixture1`` and ``fixture2``::django-admin testserver --addrport 7000 fixture1 fixture2django-admin testserver fixture1 fixture2 --addrport 7000(The above statements are equivalent. We include both of them to demonstratethat it doesn't matter whether the options come before or after the fixturearguments.)To run on 1.2.3.4:7000 with a ``test`` fixture::django-admin testserver --addrport 1.2.3.4:7000 test.. django-admin-option:: --noinput, --no-inputSuppresses all user prompts. A typical prompt is a warning about deleting anexisting test database.Commands provided by applications=================================Some commands are only available when the ``django.contrib`` application that:doc:`implements </howto/custom-management-commands>` them has been:setting:`enabled <INSTALLED_APPS>`. This section describes them grouped bytheir application.``django.contrib.auth``-----------------------``changepassword``~~~~~~~~~~~~~~~~~~.. django-admin:: changepassword [<username>]This command is only available if Django's :doc:`authentication system</topics/auth/index>` (``django.contrib.auth``) is installed.Allows changing a user's password. It prompts you to enter a new password twicefor the given user. If the entries are identical, this immediately becomes thenew password. If you do not supply a user, the command will attempt to changethe password whose username matches the current user... django-admin-option:: --database DATABASESpecifies the database to query for the user. Defaults to ``default``.Example usage::django-admin changepassword ringo``createsuperuser``~~~~~~~~~~~~~~~~~~~.. django-admin:: createsuperuser.. envvar:: DJANGO_SUPERUSER_PASSWORDThis command is only available if Django's :doc:`authentication system</topics/auth/index>` (``django.contrib.auth``) is installed.Creates a superuser account (a user who has all permissions). This isuseful if you need to create an initial superuser account or if you need toprogrammatically generate superuser accounts for your site(s).When run interactively, this command will prompt for a password forthe new superuser account. When run non-interactively, you can providea password by setting the :envvar:`DJANGO_SUPERUSER_PASSWORD` environmentvariable. Otherwise, no password will be set, and the superuser account willnot be able to log in until a password has been manually set for it.In non-interactive mode, the:attr:`~django.contrib.auth.models.CustomUser.USERNAME_FIELD` and requiredfields (listed in:attr:`~django.contrib.auth.models.CustomUser.REQUIRED_FIELDS`) fall back to``DJANGO_SUPERUSER_<uppercase_field_name>`` environment variables, unless theyare overridden by a command line argument. For example, to provide an ``email``field, you can use ``DJANGO_SUPERUSER_EMAIL`` environment variable... django-admin-option:: --noinput, --no-inputSuppresses all user prompts. If a suppressed prompt cannot be resolvedautomatically, the command will exit with error code 1... django-admin-option:: --username USERNAME.. django-admin-option:: --email EMAILThe username and email address for the new account can be supplied byusing the ``--username`` and ``--email`` arguments on the commandline. If either of those is not supplied, ``createsuperuser`` will prompt forit when running interactively... django-admin-option:: --database DATABASESpecifies the database into which the superuser object will be saved.You can subclass the management command and override ``get_input_data()`` if youwant to customize data input and validation. Consult the source code fordetails on the existing implementation and the method's parameters. For example,it could be useful if you have a ``ForeignKey`` in:attr:`~django.contrib.auth.models.CustomUser.REQUIRED_FIELDS` and want toallow creating an instance instead of entering the primary key of an existinginstance.``django.contrib.contenttypes``-------------------------------``remove_stale_contenttypes``~~~~~~~~~~~~~~~~~~~~~~~~~~~~~.. django-admin:: remove_stale_contenttypesThis command is only available if Django's :doc:`contenttypes app</ref/contrib/contenttypes>` (:mod:`django.contrib.contenttypes`) is installed.Deletes stale content types (from deleted models) in your database. Any objectsthat depend on the deleted content types will also be deleted. A list ofdeleted objects will be displayed before you confirm it's okay to proceed withthe deletion... django-admin-option:: --database DATABASESpecifies the database to use. Defaults to ``default``... django-admin-option:: --include-stale-appsDeletes stale content types including ones from previously installed apps thathave been removed from :setting:`INSTALLED_APPS`. Defaults to ``False``.``django.contrib.gis``----------------------``ogrinspect``~~~~~~~~~~~~~~This command is only available if :doc:`GeoDjango </ref/contrib/gis/index>`(``django.contrib.gis``) is installed.Please refer to its :djadmin:`description <ogrinspect>` in the GeoDjangodocumentation.``django.contrib.sessions``---------------------------``clearsessions``~~~~~~~~~~~~~~~~~.. django-admin:: clearsessionsCan be run as a cron job or directly to clean out expired sessions.``django.contrib.sitemaps``---------------------------``ping_google``~~~~~~~~~~~~~~~This command is only available if the :doc:`Sitemaps framework</ref/contrib/sitemaps>` (``django.contrib.sitemaps``) is installed.Please refer to its :djadmin:`description <ping_google>` in the Sitemapsdocumentation.``django.contrib.staticfiles``------------------------------``collectstatic``~~~~~~~~~~~~~~~~~This command is only available if the :doc:`static files application</howto/static-files/index>` (``django.contrib.staticfiles``) is installed.Please refer to its :djadmin:`description <collectstatic>` in the:doc:`staticfiles </ref/contrib/staticfiles>` documentation.``findstatic``~~~~~~~~~~~~~~This command is only available if the :doc:`static files application</howto/static-files/index>` (``django.contrib.staticfiles``) is installed.Please refer to its :djadmin:`description <findstatic>` in the :doc:`staticfiles</ref/contrib/staticfiles>` documentation.Default options===============.. program:: NoneAlthough some commands may allow their own custom options, every commandallows for the following options by default:.. django-admin-option:: --pythonpath PYTHONPATHAdds the given filesystem path to the Python `import search path`_. If thisisn't provided, ``django-admin`` will use the :envvar:`PYTHONPATH` environmentvariable.This option is unnecessary in ``manage.py``, because it takes care of settingthe Python path for you.Example usage::django-admin migrate --pythonpath='/home/djangoprojects/myproject'.. _import search path: https://diveinto.org/python3/your-first-python-program.html#importsearchpath.. django-admin-option:: --settings SETTINGSSpecifies the settings module to use. The settings module should be in Pythonpackage syntax, e.g. ``mysite.settings``. If this isn't provided,``django-admin`` will use the :envvar:`DJANGO_SETTINGS_MODULE` environmentvariable.This option is unnecessary in ``manage.py``, because it uses``settings.py`` from the current project by default.Example usage::django-admin migrate --settings=mysite.settings.. django-admin-option:: --tracebackDisplays a full stack trace when a :exc:`~django.core.management.CommandError`is raised. By default, ``django-admin`` will show an error message when a``CommandError`` occurs and a full stack trace for any other exception.This option is ignored by :djadmin:`runserver`.Example usage::django-admin migrate --traceback.. django-admin-option:: --verbosity {0,1,2,3}, -v {0,1,2,3}Specifies the amount of notification and debug information that a commandshould print to the console.* ``0`` means no output.* ``1`` means normal output (default).* ``2`` means verbose output.* ``3`` means *very* verbose output.This option is ignored by :djadmin:`runserver`.Example usage::django-admin migrate --verbosity 2.. django-admin-option:: --no-colorDisables colorized command output. Some commands format their output to becolorized. For example, errors will be printed to the console in red and SQLstatements will be syntax highlighted.Example usage::django-admin runserver --no-color.. django-admin-option:: --force-colorForces colorization of the command output if it would otherwise be disabledas discussed in :ref:`syntax-coloring`. For example, you may want to pipecolored output to another command... django-admin-option:: --skip-checksSkips running system checks prior to running the command. This option is onlyavailable if the:attr:`~django.core.management.BaseCommand.requires_system_checks` commandattribute is not an empty list or tuple.Example usage::django-admin migrate --skip-checksExtra niceties==============.. _syntax-coloring:Syntax coloring---------------.. envvar:: DJANGO_COLORSThe ``django-admin`` / ``manage.py`` commands will use prettycolor-coded output if your terminal supports ANSI-colored output. Itwon't use the color codes if you're piping the command's output toanother program unless the :option:`--force-color` option is used.Windows support~~~~~~~~~~~~~~~On Windows 10, the `Windows Terminal`_ application, `VS Code`_, and PowerShell(where virtual terminal processing is enabled) allow colored output, and aresupported by default.Under Windows, the legacy ``cmd.exe`` native console doesn't support ANSIescape sequences so by default there is no color output. In this case either oftwo third-party libraries are needed:* Install colorama_, a Python package that translates ANSI color codes intoWindows API calls. Django commands will detect its presence and will make useof its services to color output just like on Unix-based platforms.``colorama`` can be installed via pip::...\> py -m pip install colorama* Install `ANSICON`_, a third-party tool that allows ``cmd.exe`` to processANSI color codes. Django commands will detect its presence and will make useof its services to color output just like on Unix-based platforms.Other modern terminal environments on Windows, that support terminal colors,but which are not automatically detected as supported by Django, may "fake" theinstallation of ``ANSICON`` by setting the appropriate environmental variable,``ANSICON="on"``... _`Windows Terminal`: https://www.microsoft.com/en-us/p/windows-terminal-preview/9n0dx20hk701.. _`VS Code`: https://code.visualstudio.com.. _ANSICON: http://adoxa.altervista.org/ansicon/.. _colorama: https://pypi.org/project/colorama/Custom colors~~~~~~~~~~~~~The colors used for syntax highlighting can be customized. Djangoships with three color palettes:* ``dark``, suited to terminals that show white text on a blackbackground. This is the default palette.* ``light``, suited to terminals that show black text on a whitebackground.* ``nocolor``, which disables syntax highlighting.You select a palette by setting a :envvar:`DJANGO_COLORS` environmentvariable to specify the palette you want to use. For example, tospecify the ``light`` palette under a Unix or OS/X BASH shell, youwould run the following at a command prompt::export DJANGO_COLORS="light"You can also customize the colors that are used. Django specifies anumber of roles in which color is used:* ``error`` - A major error.* ``notice`` - A minor error.* ``success`` - A success.* ``warning`` - A warning.* ``sql_field`` - The name of a model field in SQL.* ``sql_coltype`` - The type of a model field in SQL.* ``sql_keyword`` - An SQL keyword.* ``sql_table`` - The name of a model in SQL.* ``http_info`` - A 1XX HTTP Informational server response.* ``http_success`` - A 2XX HTTP Success server response.* ``http_not_modified`` - A 304 HTTP Not Modified server response.* ``http_redirect`` - A 3XX HTTP Redirect server response other than 304.* ``http_not_found`` - A 404 HTTP Not Found server response.* ``http_bad_request`` - A 4XX HTTP Bad Request server response other than 404.* ``http_server_error`` - A 5XX HTTP Server Error response.* ``migrate_heading`` - A heading in a migrations management command.* ``migrate_label`` - A migration name.Each of these roles can be assigned a specific foreground andbackground color, from the following list:* ``black``* ``red``* ``green``* ``yellow``* ``blue``* ``magenta``* ``cyan``* ``white``Each of these colors can then be modified by using the followingdisplay options:* ``bold``* ``underscore``* ``blink``* ``reverse``* ``conceal``A color specification follows one of the following patterns:* ``role=fg``* ``role=fg/bg``* ``role=fg,option,option``* ``role=fg/bg,option,option``where ``role`` is the name of a valid color role, ``fg`` is theforeground color, ``bg`` is the background color and each ``option``is one of the color modifying options. Multiple color specificationsare then separated by a semicolon. For example::export DJANGO_COLORS="error=yellow/blue,blink;notice=magenta"would specify that errors be displayed using blinking yellow on blue,and notices displayed using magenta. All other color roles would beleft uncolored.Colors can also be specified by extending a base palette. If you puta palette name in a color specification, all the colors implied by thatpalette will be loaded. So::export DJANGO_COLORS="light;error=yellow/blue,blink;notice=magenta"would specify the use of all the colors in the light color palette,*except* for the colors for errors and notices which would beoverridden as specified.Bash completion---------------If you use the Bash shell, consider installing the Django bash completionscript, which lives in ``extras/django_bash_completion`` in the Django sourcedistribution. It enables tab-completion of ``django-admin`` and``manage.py`` commands, so you can, for instance...* Type ``django-admin``.* Press [TAB] to see all available options.* Type ``sql``, then [TAB], to see all available options whose names startwith ``sql``.See :doc:`/howto/custom-management-commands` for how to add customized actions.Black formatting----------------.. versionadded:: 4.1The Python files created by :djadmin:`startproject`, :djadmin:`startapp`,:djadmin:`optimizemigration`, :djadmin:`makemigrations`, and:djadmin:`squashmigrations` are formatted using the ``black`` command if it ispresent on your ``PATH``.If you have ``black`` globally installed, but do not wish it used for thecurrent project, you can set the ``PATH`` explicitly::PATH=path/to/venv/bin django-admin makemigrationsFor commands using ``stdout`` you can pipe the output to ``black`` if needed::django-admin inspectdb | black -==========================================Running management commands from your code==========================================.. function:: django.core.management.call_command(name, *args, **options)To call a management command from code use ``call_command``.``name``the name of the command to call or a command object. Passing the name ispreferred unless the object is required for testing.``*args``a list of arguments accepted by the command. Arguments are passed to theargument parser, so you can use the same style as you would on the commandline. For example, ``call_command('flush', '--verbosity=0')``.``**options``named options accepted on the command-line. Options are passed to the commandwithout triggering the argument parser, which means you'll need to pass thecorrect type. For example, ``call_command('flush', verbosity=0)`` (zero mustbe an integer rather than a string).Examples::from django.core import managementfrom django.core.management.commands import loaddatamanagement.call_command('flush', verbosity=0, interactive=False)management.call_command('loaddata', 'test_data', verbosity=0)management.call_command(loaddata.Command(), 'test_data', verbosity=0)Note that command options that take no arguments are passed as keywordswith ``True`` or ``False``, as you can see with the ``interactive`` option above.Named arguments can be passed by using either one of the following syntaxes::# Similar to the command linemanagement.call_command('dumpdata', '--natural-foreign')# Named argument similar to the command line minus the initial dashes and# with internal dashes replaced by underscoresmanagement.call_command('dumpdata', natural_foreign=True)# `use_natural_foreign_keys` is the option destination variablemanagement.call_command('dumpdata', use_natural_foreign_keys=True)Some command options have different names when using ``call_command()`` insteadof ``django-admin`` or ``manage.py``. For example, ``django-admincreatesuperuser --no-input`` translates to ``call_command('createsuperuser',interactive=False)``. To find what keyword argument name to use for``call_command()``, check the command's source code for the ``dest`` argumentpassed to ``parser.add_argument()``.Command options which take multiple options are passed a list::management.call_command('dumpdata', exclude=['contenttypes', 'auth'])The return value of the ``call_command()`` function is the same as the returnvalue of the ``handle()`` method of the command.Output redirection==================Note that you can redirect standard output and error streams as all commandssupport the ``stdout`` and ``stderr`` options. For example, you could write::with open('/path/to/command_output', 'w') as f:management.call_command('dumpdata', stdout=f)