django-admin.txt 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  1. ==================================
  2. ``django-admin`` and ``manage.py``
  3. ==================================
  4. ``django-admin`` is Django's command-line utility for administrative tasks.
  5. This document outlines all it can do.
  6. In addition, ``manage.py`` is automatically created in each Django project. It
  7. does the same thing as ``django-admin`` but also sets the
  8. :envvar:`DJANGO_SETTINGS_MODULE` environment variable so that it points to your
  9. project's ``settings.py`` file.
  10. The ``django-admin`` script should be on your system path if you installed
  11. Django via ``pip``. If it's not in your path, ensure you have your virtual
  12. environment activated.
  13. Generally, when working on a single Django project, it's easier to use
  14. ``manage.py`` than ``django-admin``. If you need to switch between multiple
  15. Django settings files, use ``django-admin`` with
  16. :envvar:`DJANGO_SETTINGS_MODULE` or the :option:`--settings` command line
  17. option.
  18. The command-line examples throughout this document use ``django-admin`` to
  19. be consistent, but any example can use ``manage.py`` or ``python -m django``
  20. just as well.
  21. Usage
  22. =====
  23. .. console::
  24. $ django-admin <command> [options]
  25. $ manage.py <command> [options]
  26. $ python -m django <command> [options]
  27. ``command`` should be one of the commands listed in this document.
  28. ``options``, which is optional, should be zero or more of the options available
  29. for the given command.
  30. Getting runtime help
  31. --------------------
  32. .. django-admin:: help
  33. Run ``django-admin help`` to display usage information and a list of the
  34. commands provided by each application.
  35. Run ``django-admin help --commands`` to display a list of all available
  36. commands.
  37. Run ``django-admin help <command>`` to display a description of the given
  38. command and a list of its available options.
  39. App names
  40. ---------
  41. Many commands take a list of "app names." An "app name" is the basename of
  42. the package containing your models. For example, if your :setting:`INSTALLED_APPS`
  43. contains the string ``'mysite.blog'``, the app name is ``blog``.
  44. Determining the version
  45. -----------------------
  46. .. django-admin:: version
  47. Run ``django-admin version`` to display the current Django version.
  48. The output follows the schema described in :pep:`440`:
  49. .. code-block:: text
  50. 1.4.dev17026
  51. 1.4a1
  52. 1.4
  53. Displaying debug output
  54. -----------------------
  55. .. program:: None
  56. Use :option:`--verbosity`, where it is supported, to specify the amount of
  57. notification and debug information that ``django-admin`` prints to the console.
  58. Available commands
  59. ==================
  60. ``check``
  61. ---------
  62. .. django-admin:: check [app_label [app_label ...]]
  63. Uses the :doc:`system check framework </ref/checks>` to inspect the entire
  64. Django project for common problems.
  65. By default, all apps will be checked. You can check a subset of apps by
  66. providing a list of app labels as arguments:
  67. .. console::
  68. django-admin check auth admin myapp
  69. .. django-admin-option:: --tag TAGS, -t TAGS
  70. The system check framework performs many different types of checks that are
  71. :ref:`categorized with tags <system-check-builtin-tags>`. You can use these
  72. tags to restrict the checks performed to just those in a particular category.
  73. For example, to perform only models and compatibility checks, run:
  74. .. console::
  75. django-admin check --tag models --tag compatibility
  76. .. django-admin-option:: --database DATABASE
  77. Specifies the database to run checks requiring database access:
  78. .. console::
  79. django-admin check --database default --database other
  80. By default, these checks will not be run.
  81. .. django-admin-option:: --list-tags
  82. Lists all available tags.
  83. .. django-admin-option:: --deploy
  84. Activates some additional checks that are only relevant in a deployment setting.
  85. You can use this option in your local development environment, but since your
  86. local development settings module may not have many of your production settings,
  87. you will probably want to point the ``check`` command at a different settings
  88. module, either by setting the :envvar:`DJANGO_SETTINGS_MODULE` environment
  89. variable, or by passing the ``--settings`` option:
  90. .. console::
  91. django-admin check --deploy --settings=production_settings
  92. Or you could run it directly on a production or staging deployment to verify
  93. that the correct settings are in use (omitting ``--settings``). You could even
  94. make it part of your integration test suite.
  95. .. django-admin-option:: --fail-level {CRITICAL,ERROR,WARNING,INFO,DEBUG}
  96. Specifies the message level that will cause the command to exit with a non-zero
  97. status. Default is ``ERROR``.
  98. ``compilemessages``
  99. -------------------
  100. .. django-admin:: compilemessages
  101. Compiles ``.po`` files created by :djadmin:`makemessages` to ``.mo`` files for
  102. use with the built-in gettext support. See :doc:`/topics/i18n/index`.
  103. .. django-admin-option:: --locale LOCALE, -l LOCALE
  104. Specifies the locale(s) to process. If not provided, all locales are processed.
  105. .. django-admin-option:: --exclude EXCLUDE, -x EXCLUDE
  106. Specifies the locale(s) to exclude from processing. If not provided, no locales
  107. are excluded.
  108. .. django-admin-option:: --use-fuzzy, -f
  109. Includes `fuzzy translations`_ into compiled files.
  110. Example usage:
  111. .. console::
  112. django-admin compilemessages --locale=pt_BR
  113. django-admin compilemessages --locale=pt_BR --locale=fr -f
  114. django-admin compilemessages -l pt_BR
  115. django-admin compilemessages -l pt_BR -l fr --use-fuzzy
  116. django-admin compilemessages --exclude=pt_BR
  117. django-admin compilemessages --exclude=pt_BR --exclude=fr
  118. django-admin compilemessages -x pt_BR
  119. django-admin compilemessages -x pt_BR -x fr
  120. .. _fuzzy translations: https://www.gnu.org/software/gettext/manual/html_node/Fuzzy-Entries.html
  121. .. django-admin-option:: --ignore PATTERN, -i PATTERN
  122. Ignores directories matching the given :mod:`glob`-style pattern. Use
  123. multiple times to ignore more.
  124. Example usage:
  125. .. console::
  126. django-admin compilemessages --ignore=cache --ignore=outdated/*/locale
  127. ``createcachetable``
  128. --------------------
  129. .. django-admin:: createcachetable
  130. Creates the cache tables for use with the database cache backend using the
  131. information from your settings file. See :doc:`/topics/cache` for more
  132. information.
  133. .. django-admin-option:: --database DATABASE
  134. Specifies the database in which the cache table(s) will be created. Defaults to
  135. ``default``.
  136. .. django-admin-option:: --dry-run
  137. Prints the SQL that would be run without actually running it, so you can
  138. customize it or use the migrations framework.
  139. ``dbshell``
  140. -----------
  141. .. django-admin:: dbshell
  142. Runs the command-line client for the database engine specified in your
  143. :setting:`ENGINE <DATABASE-ENGINE>` setting, with the connection parameters
  144. specified in your :setting:`USER`, :setting:`PASSWORD`, etc., settings.
  145. * For PostgreSQL, this runs the ``psql`` command-line client.
  146. * For MySQL, this runs the ``mysql`` command-line client.
  147. * For SQLite, this runs the ``sqlite3`` command-line client.
  148. * For Oracle, this runs the ``sqlplus`` command-line client.
  149. This command assumes the programs are on your ``PATH`` so that a call to
  150. the program name (``psql``, ``mysql``, ``sqlite3``, ``sqlplus``) will find the
  151. program in the right place. There's no way to specify the location of the
  152. program manually.
  153. .. django-admin-option:: --database DATABASE
  154. Specifies the database onto which to open a shell. Defaults to ``default``.
  155. .. django-admin-option:: -- ARGUMENTS
  156. Any arguments following a ``--`` divider will be passed on to the underlying
  157. command-line client. For example, with PostgreSQL you can use the ``psql``
  158. command's ``-c`` flag to execute a raw SQL query directly:
  159. .. console::
  160. $ django-admin dbshell -- -c 'select current_user'
  161. current_user
  162. --------------
  163. postgres
  164. (1 row)
  165. On MySQL/MariaDB, you can do this with the ``mysql`` command's ``-e`` flag:
  166. .. console::
  167. $ django-admin dbshell -- -e "select user()"
  168. +----------------------+
  169. | user() |
  170. +----------------------+
  171. | djangonaut@localhost |
  172. +----------------------+
  173. .. note::
  174. Be aware that not all options set in the :setting:`OPTIONS` part of your
  175. database configuration in :setting:`DATABASES` are passed to the
  176. command-line client, e.g. ``'isolation_level'``.
  177. ``diffsettings``
  178. ----------------
  179. .. django-admin:: diffsettings
  180. Displays differences between the current settings file and Django's default
  181. settings (or another settings file specified by :option:`--default`).
  182. Settings that don't appear in the defaults are followed by ``"###"``. For
  183. example, the default settings don't define :setting:`ROOT_URLCONF`, so
  184. :setting:`ROOT_URLCONF` is followed by ``"###"`` in the output of
  185. ``diffsettings``.
  186. .. django-admin-option:: --all
  187. Displays all settings, even if they have Django's default value. Such settings
  188. are prefixed by ``"###"``.
  189. .. django-admin-option:: --default MODULE
  190. The settings module to compare the current settings against. Leave empty to
  191. compare against Django's default settings.
  192. .. django-admin-option:: --output {hash,unified}
  193. Specifies the output format. Available values are ``hash`` and ``unified``.
  194. ``hash`` is the default mode that displays the output that's described above.
  195. ``unified`` displays the output similar to ``diff -u``. Default settings are
  196. prefixed with a minus sign, followed by the changed setting prefixed with a
  197. plus sign.
  198. ``dumpdata``
  199. ------------
  200. .. django-admin:: dumpdata [app_label[.ModelName] [app_label[.ModelName] ...]]
  201. Outputs to standard output all data in the database associated with the named
  202. application(s).
  203. If no application name is provided, all installed applications will be dumped.
  204. The output of ``dumpdata`` can be used as input for :djadmin:`loaddata`.
  205. When result of ``dumpdata`` is saved as a file, it can serve as a
  206. :ref:`fixture <fixtures-explanation>` for
  207. :ref:`tests <topics-testing-fixtures>` or as an
  208. :ref:`initial data <initial-data-via-fixtures>`.
  209. Note that ``dumpdata`` uses the default manager on the model for selecting the
  210. records to dump. If you're using a :ref:`custom manager <custom-managers>` as
  211. the default manager and it filters some of the available records, not all of the
  212. objects will be dumped.
  213. .. django-admin-option:: --all, -a
  214. Uses Django's base manager, dumping records which might otherwise be filtered
  215. or modified by a custom manager.
  216. .. django-admin-option:: --format FORMAT
  217. Specifies the serialization format of the output. Defaults to JSON. Supported
  218. formats are listed in :ref:`serialization-formats`.
  219. .. django-admin-option:: --indent INDENT
  220. Specifies the number of indentation spaces to use in the output. Defaults to
  221. ``None`` which displays all data on single line.
  222. .. django-admin-option:: --exclude EXCLUDE, -e EXCLUDE
  223. Prevents specific applications or models (specified in the form of
  224. ``app_label.ModelName``) from being dumped. If you specify a model name, then
  225. only that model will be excluded, rather than the entire application. You can
  226. also mix application names and model names.
  227. If you want to exclude multiple applications, pass ``--exclude`` more than
  228. once:
  229. .. console::
  230. django-admin dumpdata --exclude=auth --exclude=contenttypes
  231. .. django-admin-option:: --database DATABASE
  232. Specifies the database from which data will be dumped. Defaults to ``default``.
  233. .. django-admin-option:: --natural-foreign
  234. Uses the ``natural_key()`` model method to serialize any foreign key and
  235. many-to-many relationship to objects of the type that defines the method. If
  236. you're dumping ``contrib.auth`` ``Permission`` objects or
  237. ``contrib.contenttypes`` ``ContentType`` objects, you should probably use this
  238. flag. See the :ref:`natural keys <topics-serialization-natural-keys>`
  239. documentation for more details on this and the next option.
  240. .. django-admin-option:: --natural-primary
  241. Omits the primary key in the serialized data of this object since it can be
  242. calculated during deserialization.
  243. .. django-admin-option:: --pks PRIMARY_KEYS
  244. Outputs only the objects specified by a comma separated list of primary keys.
  245. This is only available when dumping one model. By default, all the records of
  246. the model are output.
  247. .. django-admin-option:: --output OUTPUT, -o OUTPUT
  248. Specifies a file to write the serialized data to. By default, the data goes to
  249. standard output.
  250. When this option is set and ``--verbosity`` is greater than 0 (the default), a
  251. progress bar is shown in the terminal.
  252. Fixtures compression
  253. ~~~~~~~~~~~~~~~~~~~~
  254. The output file can be compressed with one of the ``bz2``, ``gz``, ``lzma``, or
  255. ``xz`` formats by ending the filename with the corresponding extension.
  256. For example, to output the data as a compressed JSON file:
  257. .. console::
  258. django-admin dumpdata -o mydata.json.gz
  259. ``flush``
  260. ---------
  261. .. django-admin:: flush
  262. Removes all data from the database and re-executes any post-synchronization
  263. handlers. The table of which migrations have been applied is not cleared.
  264. If you would rather start from an empty database and rerun all migrations, you
  265. should drop and recreate the database and then run :djadmin:`migrate` instead.
  266. .. django-admin-option:: --noinput, --no-input
  267. Suppresses all user prompts.
  268. .. django-admin-option:: --database DATABASE
  269. Specifies the database to flush. Defaults to ``default``.
  270. ``inspectdb``
  271. -------------
  272. .. django-admin:: inspectdb [table [table ...]]
  273. Introspects the database tables in the database pointed-to by the
  274. :setting:`NAME` setting and outputs a Django model module (a ``models.py``
  275. file) to standard output.
  276. You may choose what tables or views to inspect by passing their names as
  277. arguments. If no arguments are provided, models are created for views only if
  278. the :option:`--include-views` option is used. Models for partition tables are
  279. created on PostgreSQL if the :option:`--include-partitions` option is used.
  280. Use this if you have a legacy database with which you'd like to use Django.
  281. The script will inspect the database and create a model for each table within
  282. it.
  283. As you might expect, the created models will have an attribute for every field
  284. in the table. Note that ``inspectdb`` has a few special cases in its field-name
  285. output:
  286. * If ``inspectdb`` cannot map a column's type to a model field type, it'll
  287. use ``TextField`` and will insert the Python comment
  288. ``'This field type is a guess.'`` next to the field in the generated
  289. model. The recognized fields may depend on apps listed in
  290. :setting:`INSTALLED_APPS`. For example, :mod:`django.contrib.postgres` adds
  291. recognition for several PostgreSQL-specific field types.
  292. * If the database column name is a Python reserved word (such as
  293. ``'pass'``, ``'class'`` or ``'for'``), ``inspectdb`` will append
  294. ``'_field'`` to the attribute name. For example, if a table has a column
  295. ``'for'``, the generated model will have a field ``'for_field'``, with
  296. the ``db_column`` attribute set to ``'for'``. ``inspectdb`` will insert
  297. the Python comment
  298. ``'Field renamed because it was a Python reserved word.'`` next to the
  299. field.
  300. This feature is meant as a shortcut, not as definitive model generation. After
  301. you run it, you'll want to look over the generated models yourself to make
  302. customizations. In particular, you'll need to rearrange models' order, so that
  303. models that refer to other models are ordered properly.
  304. Django doesn't create database defaults when a
  305. :attr:`~django.db.models.Field.default` is specified on a model field.
  306. Similarly, database defaults aren't translated to model field defaults or
  307. detected in any fashion by ``inspectdb``.
  308. By default, ``inspectdb`` creates unmanaged models. That is, ``managed = False``
  309. in the model's ``Meta`` class tells Django not to manage each table's creation,
  310. modification, and deletion. If you do want to allow Django to manage the
  311. table's lifecycle, you'll need to change the
  312. :attr:`~django.db.models.Options.managed` option to ``True`` (or remove
  313. it because ``True`` is its default value).
  314. Database-specific notes
  315. ~~~~~~~~~~~~~~~~~~~~~~~
  316. Oracle
  317. ^^^^^^
  318. * Models are created for materialized views if :option:`--include-views` is
  319. used.
  320. PostgreSQL
  321. ^^^^^^^^^^
  322. * Models are created for foreign tables.
  323. * Models are created for materialized views if
  324. :option:`--include-views` is used.
  325. * Models are created for partition tables if
  326. :option:`--include-partitions` is used.
  327. .. django-admin-option:: --database DATABASE
  328. Specifies the database to introspect. Defaults to ``default``.
  329. .. django-admin-option:: --include-partitions
  330. If this option is provided, models are also created for partitions.
  331. Only support for PostgreSQL is implemented.
  332. .. django-admin-option:: --include-views
  333. If this option is provided, models are also created for database views.
  334. ``loaddata``
  335. ------------
  336. .. django-admin:: loaddata fixture [fixture ...]
  337. Searches for and loads the contents of the named
  338. :ref:`fixture <fixtures-explanation>` into the database.
  339. .. django-admin-option:: --database DATABASE
  340. Specifies the database into which the data will be loaded. Defaults to
  341. ``default``.
  342. .. django-admin-option:: --ignorenonexistent, -i
  343. Ignores fields and models that may have been removed since the fixture was
  344. originally generated.
  345. .. django-admin-option:: --app APP_LABEL
  346. Specifies a single app to look for fixtures in rather than looking in all apps.
  347. .. django-admin-option:: --format FORMAT
  348. Specifies the :ref:`serialization format <serialization-formats>` (e.g.,
  349. ``json`` or ``xml``) for fixtures :ref:`read from stdin
  350. <loading-fixtures-stdin>`.
  351. .. django-admin-option:: --exclude EXCLUDE, -e EXCLUDE
  352. Excludes loading the fixtures from the given applications and/or models (in the
  353. form of ``app_label`` or ``app_label.ModelName``). Use the option multiple
  354. times to exclude more than one app or model.
  355. .. _loading-fixtures-stdin:
  356. Loading fixtures from ``stdin``
  357. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  358. You can use a dash as the fixture name to load input from ``sys.stdin``. For
  359. example:
  360. .. console::
  361. django-admin loaddata --format=json -
  362. When reading from ``stdin``, the :option:`--format <loaddata --format>` option
  363. is required to specify the :ref:`serialization format <serialization-formats>`
  364. of the input (e.g., ``json`` or ``xml``).
  365. Loading from ``stdin`` is useful with standard input and output redirections.
  366. For example:
  367. .. console::
  368. django-admin dumpdata --format=json --database=test app_label.ModelName | django-admin loaddata --format=json --database=prod -
  369. The :djadmin:`dumpdata` command can be used to generate input for ``loaddata``.
  370. .. seealso::
  371. For more detail about fixtures see the :ref:`fixtures-explanation` topic.
  372. ``makemessages``
  373. ----------------
  374. .. django-admin:: makemessages
  375. Runs over the entire source tree of the current directory and pulls out all
  376. strings marked for translation. It creates (or updates) a message file in the
  377. conf/locale (in the Django tree) or locale (for project and application)
  378. directory. After making changes to the messages files you need to compile them
  379. with :djadmin:`compilemessages` for use with the builtin gettext support. See
  380. the :ref:`i18n documentation <how-to-create-language-files>` for details.
  381. This command doesn't require configured settings. However, when settings aren't
  382. configured, the command can't ignore the :setting:`MEDIA_ROOT` and
  383. :setting:`STATIC_ROOT` directories or include :setting:`LOCALE_PATHS`.
  384. .. django-admin-option:: --all, -a
  385. Updates the message files for all available languages.
  386. .. django-admin-option:: --extension EXTENSIONS, -e EXTENSIONS
  387. Specifies a list of file extensions to examine (default: ``html``, ``txt``,
  388. ``py`` or ``js`` if :option:`--domain` is ``djangojs``).
  389. Example usage:
  390. .. console::
  391. django-admin makemessages --locale=de --extension xhtml
  392. Separate multiple extensions with commas or use ``-e`` or ``--extension``
  393. multiple times:
  394. .. console::
  395. django-admin makemessages --locale=de --extension=html,txt --extension xml
  396. .. django-admin-option:: --locale LOCALE, -l LOCALE
  397. Specifies the locale(s) to process.
  398. .. django-admin-option:: --exclude EXCLUDE, -x EXCLUDE
  399. Specifies the locale(s) to exclude from processing. If not provided, no locales
  400. are excluded.
  401. Example usage:
  402. .. console::
  403. django-admin makemessages --locale=pt_BR
  404. django-admin makemessages --locale=pt_BR --locale=fr
  405. django-admin makemessages -l pt_BR
  406. django-admin makemessages -l pt_BR -l fr
  407. django-admin makemessages --exclude=pt_BR
  408. django-admin makemessages --exclude=pt_BR --exclude=fr
  409. django-admin makemessages -x pt_BR
  410. django-admin makemessages -x pt_BR -x fr
  411. .. django-admin-option:: --domain DOMAIN, -d DOMAIN
  412. Specifies the domain of the messages files. Supported options are:
  413. * ``django`` for all ``*.py``, ``*.html`` and ``*.txt`` files (default)
  414. * ``djangojs`` for ``*.js`` files
  415. .. django-admin-option:: --symlinks, -s
  416. Follows symlinks to directories when looking for new translation strings.
  417. Example usage:
  418. .. console::
  419. django-admin makemessages --locale=de --symlinks
  420. .. django-admin-option:: --ignore PATTERN, -i PATTERN
  421. Ignores files or directories matching the given :mod:`glob`-style pattern. Use
  422. multiple times to ignore more.
  423. These patterns are used by default: ``'CVS'``, ``'.*'``, ``'*~'``, ``'*.pyc'``.
  424. Example usage:
  425. .. console::
  426. django-admin makemessages --locale=en_US --ignore=apps/* --ignore=secret/*.html
  427. .. django-admin-option:: --no-default-ignore
  428. Disables the default values of ``--ignore``.
  429. .. django-admin-option:: --no-wrap
  430. Disables breaking long message lines into several lines in language files.
  431. .. django-admin-option:: --no-location
  432. Suppresses writing '``#: filename:line``’ comment lines in language files.
  433. Using this option makes it harder for technically skilled translators to
  434. understand each message's context.
  435. .. django-admin-option:: --add-location [{full,file,never}]
  436. Controls ``#: filename:line`` comment lines in language files. If the option
  437. is:
  438. * ``full`` (the default if not given): the lines include both file name and
  439. line number.
  440. * ``file``: the line number is omitted.
  441. * ``never``: the lines are suppressed (same as :option:`--no-location`).
  442. Requires ``gettext`` 0.19 or newer.
  443. .. django-admin-option:: --no-obsolete
  444. Removes obsolete message strings from the ``.po`` files.
  445. .. django-admin-option:: --keep-pot
  446. Prevents deleting the temporary ``.pot`` files generated before creating the
  447. ``.po`` file. This is useful for debugging errors which may prevent the final
  448. language files from being created.
  449. .. seealso::
  450. See :ref:`customizing-makemessages` for instructions on how to customize
  451. the keywords that :djadmin:`makemessages` passes to ``xgettext``.
  452. ``makemigrations``
  453. ------------------
  454. .. django-admin:: makemigrations [app_label [app_label ...]]
  455. Creates new migrations based on the changes detected to your models.
  456. Migrations, their relationship with apps and more are covered in depth in
  457. :doc:`the migrations documentation</topics/migrations>`.
  458. Providing one or more app names as arguments will limit the migrations created
  459. to the app(s) specified and any dependencies needed (the table at the other end
  460. of a ``ForeignKey``, for example).
  461. To add migrations to an app that doesn't have a ``migrations`` directory, run
  462. ``makemigrations`` with the app's ``app_label``.
  463. .. django-admin-option:: --noinput, --no-input
  464. Suppresses all user prompts. If a suppressed prompt cannot be resolved
  465. automatically, the command will exit with error code 3.
  466. .. django-admin-option:: --empty
  467. Outputs an empty migration for the specified apps, for manual editing. This is
  468. for advanced users and should not be used unless you are familiar with the
  469. migration format, migration operations, and the dependencies between your
  470. migrations.
  471. .. django-admin-option:: --dry-run
  472. Shows what migrations would be made without actually writing any migrations
  473. files to disk. Using this option along with ``--verbosity 3`` will also show
  474. the complete migrations files that would be written.
  475. .. django-admin-option:: --merge
  476. Enables fixing of migration conflicts.
  477. .. django-admin-option:: --name NAME, -n NAME
  478. Allows naming the generated migration(s) instead of using a generated name. The
  479. name must be a valid Python :ref:`identifier <python:identifiers>`.
  480. .. django-admin-option:: --no-header
  481. Generate migration files without Django version and timestamp header.
  482. .. django-admin-option:: --check
  483. Makes ``makemigrations`` exit with a non-zero status when model changes without
  484. migrations are detected. Implies ``--dry-run``.
  485. .. versionchanged:: 4.2
  486. In older versions, the missing migrations were also created when using the
  487. ``--check`` option.
  488. .. django-admin-option:: --scriptable
  489. Diverts log output and input prompts to ``stderr``, writing only paths of
  490. generated migration files to ``stdout``.
  491. .. django-admin-option:: --update
  492. .. versionadded:: 4.2
  493. Merges model changes into the latest migration and optimize the resulting
  494. operations.
  495. The updated migration will have a generated name. In order to preserve the
  496. previous name, set it using ``--name``.
  497. ``migrate``
  498. -----------
  499. .. django-admin:: migrate [app_label] [migration_name]
  500. Synchronizes the database state with the current set of models and migrations.
  501. Migrations, their relationship with apps and more are covered in depth in
  502. :doc:`the migrations documentation</topics/migrations>`.
  503. The behavior of this command changes depending on the arguments provided:
  504. * No arguments: All apps have all of their migrations run.
  505. * ``<app_label>``: The specified app has its migrations run, up to the most
  506. recent migration. This may involve running other apps' migrations too, due
  507. to dependencies.
  508. * ``<app_label> <migrationname>``: Brings the database schema to a state where
  509. the named migration is applied, but no later migrations in the same app are
  510. applied. This may involve unapplying migrations if you have previously
  511. migrated past the named migration. You can use a prefix of the migration
  512. name, e.g. ``0001``, as long as it's unique for the given app name. Use the
  513. name ``zero`` to migrate all the way back i.e. to revert all applied
  514. migrations for an app.
  515. .. warning::
  516. When unapplying migrations, all dependent migrations will also be
  517. unapplied, regardless of ``<app_label>``. You can use ``--plan`` to check
  518. which migrations will be unapplied.
  519. .. django-admin-option:: --database DATABASE
  520. Specifies the database to migrate. Defaults to ``default``.
  521. .. django-admin-option:: --fake
  522. Marks the migrations up to the target one (following the rules above) as
  523. applied, but without actually running the SQL to change your database schema.
  524. This is intended for advanced users to manipulate the
  525. current migration state directly if they're manually applying changes;
  526. be warned that using ``--fake`` runs the risk of putting the migration state
  527. table into a state where manual recovery will be needed to make migrations
  528. run correctly.
  529. .. django-admin-option:: --fake-initial
  530. Allows Django to skip an app's initial migration if all database tables with
  531. the names of all models created by all
  532. :class:`~django.db.migrations.operations.CreateModel` operations in that
  533. migration already exist. This option is intended for use when first running
  534. migrations against a database that preexisted the use of migrations. This
  535. option does not, however, check for matching database schema beyond matching
  536. table names and so is only safe to use if you are confident that your existing
  537. schema matches what is recorded in your initial migration.
  538. .. django-admin-option:: --plan
  539. Shows the migration operations that will be performed for the given ``migrate``
  540. command.
  541. .. django-admin-option:: --run-syncdb
  542. Allows creating tables for apps without migrations. While this isn't
  543. recommended, the migrations framework is sometimes too slow on large projects
  544. with hundreds of models.
  545. .. django-admin-option:: --noinput, --no-input
  546. Suppresses all user prompts. An example prompt is asking about removing stale
  547. content types.
  548. .. django-admin-option:: --check
  549. Makes ``migrate`` exit with a non-zero status when unapplied migrations are
  550. detected.
  551. .. django-admin-option:: --prune
  552. Deletes nonexistent migrations from the ``django_migrations`` table. This is
  553. useful when migration files replaced by a squashed migration have been removed.
  554. See :ref:`migration-squashing` for more details.
  555. ``optimizemigration``
  556. ---------------------
  557. .. django-admin:: optimizemigration app_label migration_name
  558. Optimizes the operations for the named migration and overrides the existing
  559. file. If the migration contains functions that must be manually copied, the
  560. command creates a new migration file suffixed with ``_optimized`` that is meant
  561. to replace the named migration.
  562. .. django-admin-option:: --check
  563. Makes ``optimizemigration`` exit with a non-zero status when a migration can be
  564. optimized.
  565. ``runserver``
  566. -------------
  567. .. django-admin:: runserver [addrport]
  568. Starts a lightweight development web server on the local machine. By default,
  569. the server runs on port 8000 on the IP address ``127.0.0.1``. You can pass in an
  570. IP address and port number explicitly.
  571. If you run this script as a user with normal privileges (recommended), you
  572. might not have access to start a port on a low port number. Low port numbers
  573. are reserved for the superuser (root).
  574. This server uses the WSGI application object specified by the
  575. :setting:`WSGI_APPLICATION` setting.
  576. DO NOT USE THIS SERVER IN A PRODUCTION SETTING. It has not gone through
  577. security audits or performance tests. (And that's how it's gonna stay. We're in
  578. the business of making web frameworks, not web servers, so improving this
  579. server to be able to handle a production environment is outside the scope of
  580. Django.)
  581. The development server automatically reloads Python code for each request, as
  582. needed. You don't need to restart the server for code changes to take effect.
  583. However, some actions like adding files don't trigger a restart, so you'll
  584. have to restart the server in these cases.
  585. If you're using Linux or MacOS and install both :pypi:`pywatchman` and the
  586. `Watchman`_ service, kernel signals will be used to autoreload the server
  587. (rather than polling file modification timestamps each second). This offers
  588. better performance on large projects, reduced response time after code changes,
  589. more robust change detection, and a reduction in power usage. Django supports
  590. ``pywatchman`` 1.2.0 and higher.
  591. .. admonition:: Large directories with many files may cause performance issues
  592. When using Watchman with a project that includes large non-Python
  593. directories like ``node_modules``, it's advisable to ignore this directory
  594. for optimal performance. See the `watchman documentation`_ for information
  595. on how to do this.
  596. .. admonition:: Watchman timeout
  597. .. envvar:: DJANGO_WATCHMAN_TIMEOUT
  598. The default timeout of ``Watchman`` client is 5 seconds. You can change it
  599. by setting the :envvar:`DJANGO_WATCHMAN_TIMEOUT` environment variable.
  600. .. _Watchman: https://facebook.github.io/watchman/
  601. .. _watchman documentation: https://facebook.github.io/watchman/docs/config#ignore_dirs
  602. When you start the server, and each time you change Python code while the
  603. server is running, the system check framework will check your entire Django
  604. project for some common errors (see the :djadmin:`check` command). If any
  605. errors are found, they will be printed to standard output. You can use the
  606. ``--skip-checks`` option to skip running system checks.
  607. You can run as many concurrent servers as you want, as long as they're on
  608. separate ports by executing ``django-admin runserver`` more than once.
  609. Note that the default IP address, ``127.0.0.1``, is not accessible from other
  610. machines on your network. To make your development server viewable to other
  611. machines on the network, use its own IP address (e.g. ``192.168.2.1``), ``0``
  612. (shortcut for ``0.0.0.0``), ``0.0.0.0``, or ``::`` (with IPv6 enabled).
  613. You can provide an IPv6 address surrounded by brackets
  614. (e.g. ``[200a::1]:8000``). This will automatically enable IPv6 support.
  615. A hostname containing ASCII-only characters can also be used.
  616. If the :doc:`staticfiles</ref/contrib/staticfiles>` contrib app is enabled
  617. (default in new projects) the :djadmin:`runserver` command will be overridden
  618. with its own :ref:`runserver<staticfiles-runserver>` command.
  619. Logging of each request and response of the server is sent to the
  620. :ref:`django-server-logger` logger.
  621. .. django-admin-option:: --noreload
  622. Disables the auto-reloader. This means any Python code changes you make while
  623. the server is running will *not* take effect if the particular Python modules
  624. have already been loaded into memory.
  625. .. django-admin-option:: --nothreading
  626. Disables use of threading in the development server. The server is
  627. multithreaded by default.
  628. .. django-admin-option:: --ipv6, -6
  629. Uses IPv6 for the development server. This changes the default IP address from
  630. ``127.0.0.1`` to ``::1``.
  631. Examples of using different ports and addresses
  632. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  633. Port 8000 on IP address ``127.0.0.1``:
  634. .. console::
  635. django-admin runserver
  636. Port 8000 on IP address ``1.2.3.4``:
  637. .. console::
  638. django-admin runserver 1.2.3.4:8000
  639. Port 7000 on IP address ``127.0.0.1``:
  640. .. console::
  641. django-admin runserver 7000
  642. Port 7000 on IP address ``1.2.3.4``:
  643. .. console::
  644. django-admin runserver 1.2.3.4:7000
  645. Port 8000 on IPv6 address ``::1``:
  646. .. console::
  647. django-admin runserver -6
  648. Port 7000 on IPv6 address ``::1``:
  649. .. console::
  650. django-admin runserver -6 7000
  651. Port 7000 on IPv6 address ``2001:0db8:1234:5678::9``:
  652. .. console::
  653. django-admin runserver [2001:0db8:1234:5678::9]:7000
  654. Port 8000 on IPv4 address of host ``localhost``:
  655. .. console::
  656. django-admin runserver localhost:8000
  657. Port 8000 on IPv6 address of host ``localhost``:
  658. .. console::
  659. django-admin runserver -6 localhost:8000
  660. Serving static files with the development server
  661. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  662. By default, the development server doesn't serve any static files for your site
  663. (such as CSS files, images, things under :setting:`MEDIA_URL` and so forth). If
  664. you want to configure Django to serve static media, read
  665. :doc:`/howto/static-files/index`.
  666. Serving with ASGI in development
  667. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  668. Django's ``runserver`` command provides a WSGI server. In order to run under
  669. ASGI you will need to use an :doc:`ASGI server </howto/deployment/asgi/index>`.
  670. The Django Daphne project provides :ref:`daphne-runserver` that you can use.
  671. ``sendtestemail``
  672. -----------------
  673. .. django-admin:: sendtestemail [email [email ...]]
  674. Sends a test email (to confirm email sending through Django is working) to the
  675. recipient(s) specified. For example:
  676. .. console::
  677. django-admin sendtestemail foo@example.com bar@example.com
  678. There are a couple of options, and you may use any combination of them
  679. together:
  680. .. django-admin-option:: --managers
  681. Mails the email addresses specified in :setting:`MANAGERS` using
  682. :meth:`~django.core.mail.mail_managers()`.
  683. .. django-admin-option:: --admins
  684. Mails the email addresses specified in :setting:`ADMINS` using
  685. :meth:`~django.core.mail.mail_admins()`.
  686. ``shell``
  687. ---------
  688. .. django-admin:: shell
  689. Starts the Python interactive interpreter.
  690. .. django-admin-option:: --interface {ipython,bpython,python}, -i {ipython,bpython,python}
  691. Specifies the shell to use. By default, Django will use IPython_ or bpython_ if
  692. either is installed. If both are installed, specify which one you want like so:
  693. IPython:
  694. .. console::
  695. django-admin shell -i ipython
  696. bpython:
  697. .. console::
  698. django-admin shell -i bpython
  699. If you have a "rich" shell installed but want to force use of the "plain"
  700. Python interpreter, use ``python`` as the interface name, like so:
  701. .. console::
  702. django-admin shell -i python
  703. .. _IPython: https://ipython.org/
  704. .. _bpython: https://bpython-interpreter.org/
  705. .. django-admin-option:: --nostartup
  706. Disables reading the startup script for the "plain" Python interpreter. By
  707. default, the script pointed to by the :envvar:`PYTHONSTARTUP` environment
  708. variable or the ``~/.pythonrc.py`` script is read.
  709. .. django-admin-option:: --command COMMAND, -c COMMAND
  710. Lets you pass a command as a string to execute it as Django, like so:
  711. .. console::
  712. django-admin shell --command="import django; print(django.__version__)"
  713. You can also pass code in on standard input to execute it. For example:
  714. .. code-block:: console
  715. $ django-admin shell <<EOF
  716. > import django
  717. > print(django.__version__)
  718. > EOF
  719. On Windows, the REPL is output due to implementation limits of
  720. :func:`select.select` on that platform.
  721. ``showmigrations``
  722. ------------------
  723. .. django-admin:: showmigrations [app_label [app_label ...]]
  724. Shows all migrations in a project. You can choose from one of two formats:
  725. .. django-admin-option:: --list, -l
  726. Lists all of the apps Django knows about, the migrations available for each
  727. app, and whether or not each migration is applied (marked by an ``[X]`` next to
  728. the migration name). For a ``--verbosity`` of 2 and above, the applied
  729. datetimes are also shown.
  730. Apps without migrations are also listed, but have ``(no migrations)`` printed
  731. under them.
  732. This is the default output format.
  733. .. django-admin-option:: --plan, -p
  734. Shows the migration plan Django will follow to apply migrations. Like
  735. ``--list``, applied migrations are marked by an ``[X]``. For a ``--verbosity``
  736. of 2 and above, all dependencies of a migration will also be shown.
  737. ``app_label``\s arguments limit the output, however, dependencies of provided
  738. apps may also be included.
  739. .. django-admin-option:: --database DATABASE
  740. Specifies the database to examine. Defaults to ``default``.
  741. ``sqlflush``
  742. ------------
  743. .. django-admin:: sqlflush
  744. Prints the SQL statements that would be executed for the :djadmin:`flush`
  745. command.
  746. .. django-admin-option:: --database DATABASE
  747. Specifies the database for which to print the SQL. Defaults to ``default``.
  748. ``sqlmigrate``
  749. --------------
  750. .. django-admin:: sqlmigrate app_label migration_name
  751. Prints the SQL for the named migration. This requires an active database
  752. connection, which it will use to resolve constraint names; this means you must
  753. generate the SQL against a copy of the database you wish to later apply it on.
  754. Note that ``sqlmigrate`` doesn't colorize its output.
  755. .. django-admin-option:: --backwards
  756. Generates the SQL for unapplying the migration. By default, the SQL created is
  757. for running the migration in the forwards direction.
  758. .. django-admin-option:: --database DATABASE
  759. Specifies the database for which to generate the SQL. Defaults to ``default``.
  760. ``sqlsequencereset``
  761. --------------------
  762. .. django-admin:: sqlsequencereset app_label [app_label ...]
  763. Prints the SQL statements for resetting sequences for the given app name(s).
  764. Sequences are indexes used by some database engines to track the next available
  765. number for automatically incremented fields.
  766. Use this command to generate SQL which will fix cases where a sequence is out
  767. of sync with its automatically incremented field data.
  768. .. django-admin-option:: --database DATABASE
  769. Specifies the database for which to print the SQL. Defaults to ``default``.
  770. ``squashmigrations``
  771. --------------------
  772. .. django-admin:: squashmigrations app_label [start_migration_name] migration_name
  773. Squashes the migrations for ``app_label`` up to and including ``migration_name``
  774. down into fewer migrations, if possible. The resulting squashed migrations
  775. can live alongside the unsquashed ones safely. For more information,
  776. please read :ref:`migration-squashing`.
  777. When ``start_migration_name`` is given, Django will only include migrations
  778. starting from and including this migration. This helps to mitigate the
  779. squashing limitation of :class:`~django.db.migrations.operations.RunPython` and
  780. :class:`django.db.migrations.operations.RunSQL` migration operations.
  781. .. django-admin-option:: --no-optimize
  782. Disables the optimizer when generating a squashed migration. By default, Django
  783. will try to optimize the operations in your migrations to reduce the size of
  784. the resulting file. Use this option if this process is failing or creating
  785. incorrect migrations, though please also file a Django bug report about the
  786. behavior, as optimization is meant to be safe.
  787. .. django-admin-option:: --noinput, --no-input
  788. Suppresses all user prompts.
  789. .. django-admin-option:: --squashed-name SQUASHED_NAME
  790. Sets the name of the squashed migration. When omitted, the name is based on the
  791. first and last migration, with ``_squashed_`` in between.
  792. .. django-admin-option:: --no-header
  793. Generate squashed migration file without Django version and timestamp header.
  794. ``startapp``
  795. ------------
  796. .. django-admin:: startapp name [directory]
  797. Creates a Django app directory structure for the given app name in the current
  798. directory or the given destination.
  799. By default, :source:`the new directory <django/conf/app_template>` contains a
  800. ``models.py`` file and other app template files. If only the app name is given,
  801. the app directory will be created in the current working directory.
  802. If the optional destination is provided, Django will use that existing
  803. directory rather than creating a new one. You can use '.' to denote the current
  804. working directory.
  805. For example:
  806. .. console::
  807. django-admin startapp myapp /Users/jezdez/Code/myapp
  808. .. _custom-app-and-project-templates:
  809. .. django-admin-option:: --template TEMPLATE
  810. Provides the path to a directory with a custom app template file, or a path to
  811. an uncompressed archive (``.tar``) or a compressed archive (``.tar.gz``,
  812. ``.tar.bz2``, ``.tar.xz``, ``.tar.lzma``, ``.tgz``, ``.tbz2``, ``.txz``,
  813. ``.tlz``, ``.zip``) containing the app template files.
  814. For example, this would look for an app template in the given directory when
  815. creating the ``myapp`` app:
  816. .. console::
  817. django-admin startapp --template=/Users/jezdez/Code/my_app_template myapp
  818. Django will also accept URLs (``http``, ``https``, ``ftp``) to compressed
  819. archives with the app template files, downloading and extracting them on the
  820. fly.
  821. For example, taking advantage of GitHub's feature to expose repositories as
  822. zip files, you can use a URL like:
  823. .. console::
  824. django-admin startapp --template=https://github.com/githubuser/django-app-template/archive/main.zip myapp
  825. .. django-admin-option:: --extension EXTENSIONS, -e EXTENSIONS
  826. Specifies which file extensions in the app template should be rendered with the
  827. template engine. Defaults to ``py``.
  828. .. django-admin-option:: --name FILES, -n FILES
  829. Specifies which files in the app template (in addition to those matching
  830. ``--extension``) should be rendered with the template engine. Defaults to an
  831. empty list.
  832. .. django-admin-option:: --exclude DIRECTORIES, -x DIRECTORIES
  833. Specifies which directories in the app template should be excluded, in addition
  834. to ``.git`` and ``__pycache__``. If this option is not provided, directories
  835. named ``__pycache__`` or starting with ``.`` will be excluded.
  836. The :class:`template context <django.template.Context>` used for all matching
  837. files is:
  838. - Any option passed to the ``startapp`` command (among the command's supported
  839. options)
  840. - ``app_name`` -- the app name as passed to the command
  841. - ``app_directory`` -- the full path of the newly created app
  842. - ``camel_case_app_name`` -- the app name in camel case format
  843. - ``docs_version`` -- the version of the documentation: ``'dev'`` or ``'1.x'``
  844. - ``django_version`` -- the version of Django, e.g. ``'2.0.3'``
  845. .. _render_warning:
  846. .. warning::
  847. When the app template files are rendered with the Django template
  848. engine (by default all ``*.py`` files), Django will also replace all
  849. stray template variables contained. For example, if one of the Python files
  850. contains a docstring explaining a particular feature related
  851. to template rendering, it might result in an incorrect example.
  852. To work around this problem, you can use the :ttag:`templatetag`
  853. template tag to "escape" the various parts of the template syntax.
  854. In addition, to allow Python template files that contain Django template
  855. language syntax while also preventing packaging systems from trying to
  856. byte-compile invalid ``*.py`` files, template files ending with ``.py-tpl``
  857. will be renamed to ``.py``.
  858. .. _trusted_code_warning:
  859. .. warning::
  860. The contents of custom app (or project) templates should always be
  861. audited before use: Such templates define code that will become
  862. part of your project, and this means that such code will be trusted
  863. as much as any app you install, or code you write yourself.
  864. Further, even rendering the templates is, effectively, executing
  865. code that was provided as input to the management command. The
  866. Django template language may provide wide access into the system,
  867. so make sure any custom template you use is worthy of your trust.
  868. ``startproject``
  869. ----------------
  870. .. django-admin:: startproject name [directory]
  871. Creates a Django project directory structure for the given project name in
  872. the current directory or the given destination.
  873. By default, :source:`the new directory <django/conf/project_template>` contains
  874. ``manage.py`` and a project package (containing a ``settings.py`` and other
  875. files).
  876. If only the project name is given, both the project directory and project
  877. package will be named ``<projectname>`` and the project directory
  878. will be created in the current working directory.
  879. If the optional destination is provided, Django will use that existing
  880. directory as the project directory, and create ``manage.py`` and the project
  881. package within it. Use '.' to denote the current working directory.
  882. For example:
  883. .. console::
  884. django-admin startproject myproject /Users/jezdez/Code/myproject_repo
  885. .. django-admin-option:: --template TEMPLATE
  886. Specifies a directory, file path, or URL of a custom project template. See the
  887. :option:`startapp --template` documentation for examples and usage.
  888. .. django-admin-option:: --extension EXTENSIONS, -e EXTENSIONS
  889. Specifies which file extensions in the project template should be rendered with
  890. the template engine. Defaults to ``py``.
  891. .. django-admin-option:: --name FILES, -n FILES
  892. Specifies which files in the project template (in addition to those matching
  893. ``--extension``) should be rendered with the template engine. Defaults to an
  894. empty list.
  895. .. django-admin-option:: --exclude DIRECTORIES, -x DIRECTORIES
  896. Specifies which directories in the project template should be excluded, in
  897. addition to ``.git`` and ``__pycache__``. If this option is not provided,
  898. directories named ``__pycache__`` or starting with ``.`` will be excluded.
  899. The :class:`template context <django.template.Context>` used is:
  900. - Any option passed to the ``startproject`` command (among the command's
  901. supported options)
  902. - ``project_name`` -- the project name as passed to the command
  903. - ``project_directory`` -- the full path of the newly created project
  904. - ``secret_key`` -- a random key for the :setting:`SECRET_KEY` setting
  905. - ``docs_version`` -- the version of the documentation: ``'dev'`` or ``'1.x'``
  906. - ``django_version`` -- the version of Django, e.g. ``'2.0.3'``
  907. Please also see the :ref:`rendering warning <render_warning>` and
  908. :ref:`trusted code warning <trusted_code_warning>` as mentioned for
  909. :djadmin:`startapp`.
  910. ``test``
  911. --------
  912. .. django-admin:: test [test_label [test_label ...]]
  913. Runs tests for all installed apps. See :doc:`/topics/testing/index` for more
  914. information.
  915. .. django-admin-option:: --failfast
  916. Stops running tests and reports the failure immediately after a test fails.
  917. .. django-admin-option:: --testrunner TESTRUNNER
  918. Controls the test runner class that is used to execute tests. This value
  919. overrides the value provided by the :setting:`TEST_RUNNER` setting.
  920. .. django-admin-option:: --noinput, --no-input
  921. Suppresses all user prompts. A typical prompt is a warning about deleting an
  922. existing test database.
  923. Test runner options
  924. ~~~~~~~~~~~~~~~~~~~
  925. The ``test`` command receives options on behalf of the specified
  926. :option:`--testrunner`. These are the options of the default test runner:
  927. :class:`~django.test.runner.DiscoverRunner`.
  928. .. django-admin-option:: --keepdb
  929. Preserves the test database between test runs. This has the advantage of
  930. skipping both the create and destroy actions which can greatly decrease the
  931. time to run tests, especially those in a large test suite. If the test database
  932. does not exist, it will be created on the first run and then preserved for each
  933. subsequent run. Unless the :setting:`MIGRATE <TEST_MIGRATE>` test setting is
  934. ``False``, any unapplied migrations will also be applied to the test database
  935. before running the test suite.
  936. .. django-admin-option:: --shuffle [SEED]
  937. Randomizes the order of tests before running them. This can help detect tests
  938. that aren't properly isolated. The test order generated by this option is a
  939. deterministic function of the integer seed given. When no seed is passed, a
  940. seed is chosen randomly and printed to the console. To repeat a particular test
  941. order, pass a seed. The test orders generated by this option preserve Django's
  942. :ref:`guarantees on test order <order-of-tests>`. They also keep tests grouped
  943. by test case class.
  944. The shuffled orderings also have a special consistency property useful when
  945. narrowing down isolation issues. Namely, for a given seed and when running a
  946. subset of tests, the new order will be the original shuffling restricted to the
  947. smaller set. Similarly, when adding tests while keeping the seed the same, the
  948. order of the original tests will be the same in the new order.
  949. .. django-admin-option:: --reverse, -r
  950. Sorts test cases in the opposite execution order. This may help in debugging
  951. the side effects of tests that aren't properly isolated. :ref:`Grouping by test
  952. class <order-of-tests>` is preserved when using this option. This can be used
  953. in conjunction with ``--shuffle`` to reverse the order for a particular seed.
  954. .. django-admin-option:: --debug-mode
  955. Sets the :setting:`DEBUG` setting to ``True`` prior to running tests. This may
  956. help troubleshoot test failures.
  957. .. django-admin-option:: --debug-sql, -d
  958. Enables :ref:`SQL logging <django-db-logger>` for failing tests. If
  959. ``--verbosity`` is ``2``, then queries in passing tests are also output.
  960. .. django-admin-option:: --parallel [N]
  961. .. envvar:: DJANGO_TEST_PROCESSES
  962. Runs tests in separate parallel processes. Since modern processors have
  963. multiple cores, this allows running tests significantly faster.
  964. Using ``--parallel`` without a value, or with the value ``auto``, runs one test
  965. process per core according to :func:`multiprocessing.cpu_count()`. You can
  966. override this by passing the desired number of processes, e.g.
  967. ``--parallel 4``, or by setting the :envvar:`DJANGO_TEST_PROCESSES` environment
  968. variable.
  969. Django distributes test cases — :class:`unittest.TestCase` subclasses — to
  970. subprocesses. If there are fewer test case classes than configured processes,
  971. Django will reduce the number of processes accordingly.
  972. Each process gets its own database. You must ensure that different test case
  973. classes don't access the same resources. For instance, test case classes that
  974. touch the filesystem should create a temporary directory for their own use.
  975. .. note::
  976. If you have test classes that cannot be run in parallel, you can use
  977. ``SerializeMixin`` to run them sequentially. See :ref:`Enforce running test
  978. classes sequentially <topics-testing-enforce-run-sequentially>`.
  979. This option requires the third-party ``tblib`` package to display tracebacks
  980. correctly:
  981. .. code-block:: console
  982. $ python -m pip install tblib
  983. This feature isn't available on Windows. It doesn't work with the Oracle
  984. database backend either.
  985. If you want to use :mod:`pdb` while debugging tests, you must disable parallel
  986. execution (``--parallel=1``). You'll see something like ``bdb.BdbQuit`` if you
  987. don't.
  988. .. warning::
  989. When test parallelization is enabled and a test fails, Django may be
  990. unable to display the exception traceback. This can make debugging
  991. difficult. If you encounter this problem, run the affected test without
  992. parallelization to see the traceback of the failure.
  993. This is a known limitation. It arises from the need to serialize objects
  994. in order to exchange them between processes. See
  995. :ref:`python:pickle-picklable` for details.
  996. .. option:: --tag TAGS
  997. Runs only tests :ref:`marked with the specified tags <topics-tagging-tests>`.
  998. May be specified multiple times and combined with :option:`test --exclude-tag`.
  999. Tests that fail to load are always considered matching.
  1000. .. option:: --exclude-tag EXCLUDE_TAGS
  1001. Excludes tests :ref:`marked with the specified tags <topics-tagging-tests>`.
  1002. May be specified multiple times and combined with :option:`test --tag`.
  1003. .. django-admin-option:: -k TEST_NAME_PATTERNS
  1004. Runs test methods and classes matching test name patterns, in the same way as
  1005. :option:`unittest's -k option<unittest.-k>`. Can be specified multiple times.
  1006. .. django-admin-option:: --pdb
  1007. Spawns a ``pdb`` debugger at each test error or failure. If you have it
  1008. installed, ``ipdb`` is used instead.
  1009. .. django-admin-option:: --buffer, -b
  1010. Discards output (``stdout`` and ``stderr``) for passing tests, in the same way
  1011. as :option:`unittest's --buffer option<unittest.-b>`.
  1012. .. django-admin-option:: --no-faulthandler
  1013. Django automatically calls :func:`faulthandler.enable()` when starting the
  1014. tests, which allows it to print a traceback if the interpreter crashes. Pass
  1015. ``--no-faulthandler`` to disable this behavior.
  1016. .. django-admin-option:: --timing
  1017. Outputs timings, including database setup and total run time.
  1018. .. django-admin-option:: --durations N
  1019. .. versionadded:: 5.0
  1020. Shows the N slowest test cases (N=0 for all).
  1021. .. admonition:: Python 3.12 and later
  1022. This feature is only available for Python 3.12 and later.
  1023. ``testserver``
  1024. --------------
  1025. .. django-admin:: testserver [fixture [fixture ...]]
  1026. Runs a Django development server (as in :djadmin:`runserver`) using data from
  1027. the given fixture(s).
  1028. For example, this command:
  1029. .. console::
  1030. django-admin testserver mydata.json
  1031. ...would perform the following steps:
  1032. #. Create a test database, as described in :ref:`the-test-database`.
  1033. #. Populate the test database with fixture data from the given fixtures.
  1034. (For more on fixtures, see the documentation for :djadmin:`loaddata` above.)
  1035. #. Runs the Django development server (as in :djadmin:`runserver`), pointed at
  1036. this newly created test database instead of your production database.
  1037. This is useful in a number of ways:
  1038. * When you're writing :doc:`unit tests </topics/testing/overview>` of how your views
  1039. act with certain fixture data, you can use ``testserver`` to interact with
  1040. the views in a web browser, manually.
  1041. * Let's say you're developing your Django application and have a "pristine"
  1042. copy of a database that you'd like to interact with. You can dump your
  1043. database to a :ref:`fixture <fixtures-explanation>` (using the
  1044. :djadmin:`dumpdata` command, explained above), then use ``testserver`` to run
  1045. your web application with that data. With this arrangement, you have the
  1046. flexibility of messing up your data in any way, knowing that whatever data
  1047. changes you're making are only being made to a test database.
  1048. Note that this server does *not* automatically detect changes to your Python
  1049. source code (as :djadmin:`runserver` does). It does, however, detect changes to
  1050. templates.
  1051. .. django-admin-option:: --addrport ADDRPORT
  1052. Specifies a different port, or IP address and port, from the default of
  1053. ``127.0.0.1:8000``. This value follows exactly the same format and serves
  1054. exactly the same function as the argument to the :djadmin:`runserver` command.
  1055. Examples:
  1056. To run the test server on port 7000 with ``fixture1`` and ``fixture2``:
  1057. .. console::
  1058. django-admin testserver --addrport 7000 fixture1 fixture2
  1059. django-admin testserver fixture1 fixture2 --addrport 7000
  1060. (The above statements are equivalent. We include both of them to demonstrate
  1061. that it doesn't matter whether the options come before or after the fixture
  1062. arguments.)
  1063. To run on 1.2.3.4:7000 with a ``test`` fixture:
  1064. .. console::
  1065. django-admin testserver --addrport 1.2.3.4:7000 test
  1066. .. django-admin-option:: --noinput, --no-input
  1067. Suppresses all user prompts. A typical prompt is a warning about deleting an
  1068. existing test database.
  1069. Commands provided by applications
  1070. =================================
  1071. Some commands are only available when the ``django.contrib`` application that
  1072. :doc:`implements </howto/custom-management-commands>` them has been
  1073. :setting:`enabled <INSTALLED_APPS>`. This section describes them grouped by
  1074. their application.
  1075. ``django.contrib.auth``
  1076. -----------------------
  1077. ``changepassword``
  1078. ~~~~~~~~~~~~~~~~~~
  1079. .. django-admin:: changepassword [<username>]
  1080. This command is only available if Django's :doc:`authentication system
  1081. </topics/auth/index>` (``django.contrib.auth``) is installed.
  1082. Allows changing a user's password. It prompts you to enter a new password twice
  1083. for the given user. If the entries are identical, this immediately becomes the
  1084. new password. If you do not supply a user, the command will attempt to change
  1085. the password whose username matches the current user.
  1086. .. django-admin-option:: --database DATABASE
  1087. Specifies the database to query for the user. Defaults to ``default``.
  1088. Example usage:
  1089. .. console::
  1090. django-admin changepassword ringo
  1091. ``createsuperuser``
  1092. ~~~~~~~~~~~~~~~~~~~
  1093. .. django-admin:: createsuperuser
  1094. .. envvar:: DJANGO_SUPERUSER_PASSWORD
  1095. This command is only available if Django's :doc:`authentication system
  1096. </topics/auth/index>` (``django.contrib.auth``) is installed.
  1097. Creates a superuser account (a user who has all permissions). This is
  1098. useful if you need to create an initial superuser account or if you need to
  1099. programmatically generate superuser accounts for your site(s).
  1100. When run interactively, this command will prompt for a password for
  1101. the new superuser account. When run non-interactively, you can provide
  1102. a password by setting the :envvar:`DJANGO_SUPERUSER_PASSWORD` environment
  1103. variable. Otherwise, no password will be set, and the superuser account will
  1104. not be able to log in until a password has been manually set for it.
  1105. In non-interactive mode, the
  1106. :attr:`~django.contrib.auth.models.CustomUser.USERNAME_FIELD` and required
  1107. fields (listed in
  1108. :attr:`~django.contrib.auth.models.CustomUser.REQUIRED_FIELDS`) fall back to
  1109. ``DJANGO_SUPERUSER_<uppercase_field_name>`` environment variables, unless they
  1110. are overridden by a command line argument. For example, to provide an ``email``
  1111. field, you can use ``DJANGO_SUPERUSER_EMAIL`` environment variable.
  1112. .. django-admin-option:: --noinput, --no-input
  1113. Suppresses all user prompts. If a suppressed prompt cannot be resolved
  1114. automatically, the command will exit with error code 1.
  1115. .. django-admin-option:: --username USERNAME
  1116. .. django-admin-option:: --email EMAIL
  1117. The username and email address for the new account can be supplied by
  1118. using the ``--username`` and ``--email`` arguments on the command
  1119. line. If either of those is not supplied, ``createsuperuser`` will prompt for
  1120. it when running interactively.
  1121. .. django-admin-option:: --database DATABASE
  1122. Specifies the database into which the superuser object will be saved.
  1123. You can subclass the management command and override ``get_input_data()`` if you
  1124. want to customize data input and validation. Consult the source code for
  1125. details on the existing implementation and the method's parameters. For example,
  1126. it could be useful if you have a ``ForeignKey`` in
  1127. :attr:`~django.contrib.auth.models.CustomUser.REQUIRED_FIELDS` and want to
  1128. allow creating an instance instead of entering the primary key of an existing
  1129. instance.
  1130. ``django.contrib.contenttypes``
  1131. -------------------------------
  1132. ``remove_stale_contenttypes``
  1133. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1134. .. django-admin:: remove_stale_contenttypes
  1135. This command is only available if Django's :doc:`contenttypes app
  1136. </ref/contrib/contenttypes>` (:mod:`django.contrib.contenttypes`) is installed.
  1137. Deletes stale content types (from deleted models) in your database. Any objects
  1138. that depend on the deleted content types will also be deleted. A list of
  1139. deleted objects will be displayed before you confirm it's okay to proceed with
  1140. the deletion.
  1141. .. django-admin-option:: --database DATABASE
  1142. Specifies the database to use. Defaults to ``default``.
  1143. .. django-admin-option:: --include-stale-apps
  1144. Deletes stale content types including ones from previously installed apps that
  1145. have been removed from :setting:`INSTALLED_APPS`. Defaults to ``False``.
  1146. ``django.contrib.gis``
  1147. ----------------------
  1148. ``ogrinspect``
  1149. ~~~~~~~~~~~~~~
  1150. This command is only available if :doc:`GeoDjango </ref/contrib/gis/index>`
  1151. (``django.contrib.gis``) is installed.
  1152. Please refer to its :djadmin:`description <ogrinspect>` in the GeoDjango
  1153. documentation.
  1154. ``django.contrib.sessions``
  1155. ---------------------------
  1156. ``clearsessions``
  1157. ~~~~~~~~~~~~~~~~~
  1158. .. django-admin:: clearsessions
  1159. Can be run as a cron job or directly to clean out expired sessions.
  1160. ``django.contrib.staticfiles``
  1161. ------------------------------
  1162. ``collectstatic``
  1163. ~~~~~~~~~~~~~~~~~
  1164. This command is only available if the :doc:`static files application
  1165. </howto/static-files/index>` (``django.contrib.staticfiles``) is installed.
  1166. Please refer to its :djadmin:`description <collectstatic>` in the
  1167. :doc:`staticfiles </ref/contrib/staticfiles>` documentation.
  1168. ``findstatic``
  1169. ~~~~~~~~~~~~~~
  1170. This command is only available if the :doc:`static files application
  1171. </howto/static-files/index>` (``django.contrib.staticfiles``) is installed.
  1172. Please refer to its :djadmin:`description <findstatic>` in the :doc:`staticfiles
  1173. </ref/contrib/staticfiles>` documentation.
  1174. Default options
  1175. ===============
  1176. .. program:: None
  1177. Although some commands may allow their own custom options, every command
  1178. allows for the following options by default:
  1179. .. django-admin-option:: --pythonpath PYTHONPATH
  1180. Adds the given filesystem path to the Python :py:data:`sys.path` module
  1181. attribute. If this isn't provided, ``django-admin`` will use the
  1182. :envvar:`PYTHONPATH` environment variable.
  1183. This option is unnecessary in ``manage.py``, because it takes care of setting
  1184. the Python path for you.
  1185. Example usage:
  1186. .. console::
  1187. django-admin migrate --pythonpath='/home/djangoprojects/myproject'
  1188. .. django-admin-option:: --settings SETTINGS
  1189. Specifies the settings module to use. The settings module should be in Python
  1190. package syntax, e.g. ``mysite.settings``. If this isn't provided,
  1191. ``django-admin`` will use the :envvar:`DJANGO_SETTINGS_MODULE` environment
  1192. variable.
  1193. This option is unnecessary in ``manage.py``, because it uses
  1194. ``settings.py`` from the current project by default.
  1195. Example usage:
  1196. .. console::
  1197. django-admin migrate --settings=mysite.settings
  1198. .. django-admin-option:: --traceback
  1199. Displays a full stack trace when a :exc:`~django.core.management.CommandError`
  1200. is raised. By default, ``django-admin`` will show an error message when a
  1201. ``CommandError`` occurs and a full stack trace for any other exception.
  1202. This option is ignored by :djadmin:`runserver`.
  1203. Example usage:
  1204. .. console::
  1205. django-admin migrate --traceback
  1206. .. django-admin-option:: --verbosity {0,1,2,3}, -v {0,1,2,3}
  1207. Specifies the amount of notification and debug information that a command
  1208. should print to the console.
  1209. * ``0`` means no output.
  1210. * ``1`` means normal output (default).
  1211. * ``2`` means verbose output.
  1212. * ``3`` means *very* verbose output.
  1213. This option is ignored by :djadmin:`runserver`.
  1214. Example usage:
  1215. .. console::
  1216. django-admin migrate --verbosity 2
  1217. .. django-admin-option:: --no-color
  1218. Disables colorized command output. Some commands format their output to be
  1219. colorized. For example, errors will be printed to the console in red and SQL
  1220. statements will be syntax highlighted.
  1221. Example usage:
  1222. .. console::
  1223. django-admin runserver --no-color
  1224. .. django-admin-option:: --force-color
  1225. Forces colorization of the command output if it would otherwise be disabled
  1226. as discussed in :ref:`syntax-coloring`. For example, you may want to pipe
  1227. colored output to another command.
  1228. .. django-admin-option:: --skip-checks
  1229. Skips running system checks prior to running the command. This option is only
  1230. available if the
  1231. :attr:`~django.core.management.BaseCommand.requires_system_checks` command
  1232. attribute is not an empty list or tuple.
  1233. Example usage:
  1234. .. console::
  1235. django-admin migrate --skip-checks
  1236. Extra niceties
  1237. ==============
  1238. .. _syntax-coloring:
  1239. Syntax coloring
  1240. ---------------
  1241. .. envvar:: DJANGO_COLORS
  1242. The ``django-admin`` / ``manage.py`` commands will use pretty
  1243. color-coded output if your terminal supports ANSI-colored output. It
  1244. won't use the color codes if you're piping the command's output to
  1245. another program unless the :option:`--force-color` option is used.
  1246. Windows support
  1247. ~~~~~~~~~~~~~~~
  1248. On Windows 10, the `Windows Terminal`_ application, `VS Code`_, and PowerShell
  1249. (where virtual terminal processing is enabled) allow colored output, and are
  1250. supported by default.
  1251. Under Windows, the legacy ``cmd.exe`` native console doesn't support ANSI
  1252. escape sequences so by default there is no color output. In this case either of
  1253. two third-party libraries are needed:
  1254. * Install :pypi:`colorama`, a Python package that translates ANSI color codes
  1255. into Windows API calls. Django commands will detect its presence and will
  1256. make use of its services to color output just like on Unix-based platforms.
  1257. ``colorama`` can be installed via pip:
  1258. .. code-block:: doscon
  1259. ...\> py -m pip install "colorama >= 0.4.6"
  1260. * Install `ANSICON`_, a third-party tool that allows ``cmd.exe`` to process
  1261. ANSI color codes. Django commands will detect its presence and will make use
  1262. of its services to color output just like on Unix-based platforms.
  1263. Other modern terminal environments on Windows, that support terminal colors,
  1264. but which are not automatically detected as supported by Django, may "fake" the
  1265. installation of ``ANSICON`` by setting the appropriate environmental variable,
  1266. ``ANSICON="on"``.
  1267. .. _`Windows Terminal`: https://www.microsoft.com/en-us/p/windows-terminal-preview/9n0dx20hk701
  1268. .. _`VS Code`: https://code.visualstudio.com
  1269. .. _ANSICON: http://adoxa.altervista.org/ansicon/
  1270. Custom colors
  1271. ~~~~~~~~~~~~~
  1272. The colors used for syntax highlighting can be customized. Django
  1273. ships with three color palettes:
  1274. * ``dark``, suited to terminals that show white text on a black
  1275. background. This is the default palette.
  1276. * ``light``, suited to terminals that show black text on a white
  1277. background.
  1278. * ``nocolor``, which disables syntax highlighting.
  1279. You select a palette by setting a :envvar:`DJANGO_COLORS` environment
  1280. variable to specify the palette you want to use. For example, to
  1281. specify the ``light`` palette under a Unix or OS/X BASH shell, you
  1282. would run the following at a command prompt:
  1283. .. code-block:: shell
  1284. export DJANGO_COLORS="light"
  1285. You can also customize the colors that are used. Django specifies a
  1286. number of roles in which color is used:
  1287. * ``error`` - A major error.
  1288. * ``notice`` - A minor error.
  1289. * ``success`` - A success.
  1290. * ``warning`` - A warning.
  1291. * ``sql_field`` - The name of a model field in SQL.
  1292. * ``sql_coltype`` - The type of a model field in SQL.
  1293. * ``sql_keyword`` - An SQL keyword.
  1294. * ``sql_table`` - The name of a model in SQL.
  1295. * ``http_info`` - A 1XX HTTP Informational server response.
  1296. * ``http_success`` - A 2XX HTTP Success server response.
  1297. * ``http_not_modified`` - A 304 HTTP Not Modified server response.
  1298. * ``http_redirect`` - A 3XX HTTP Redirect server response other than 304.
  1299. * ``http_not_found`` - A 404 HTTP Not Found server response.
  1300. * ``http_bad_request`` - A 4XX HTTP Bad Request server response other than 404.
  1301. * ``http_server_error`` - A 5XX HTTP Server Error response.
  1302. * ``migrate_heading`` - A heading in a migrations management command.
  1303. * ``migrate_label`` - A migration name.
  1304. Each of these roles can be assigned a specific foreground and
  1305. background color, from the following list:
  1306. * ``black``
  1307. * ``red``
  1308. * ``green``
  1309. * ``yellow``
  1310. * ``blue``
  1311. * ``magenta``
  1312. * ``cyan``
  1313. * ``white``
  1314. Each of these colors can then be modified by using the following
  1315. display options:
  1316. * ``bold``
  1317. * ``underscore``
  1318. * ``blink``
  1319. * ``reverse``
  1320. * ``conceal``
  1321. A color specification follows one of the following patterns:
  1322. * ``role=fg``
  1323. * ``role=fg/bg``
  1324. * ``role=fg,option,option``
  1325. * ``role=fg/bg,option,option``
  1326. where ``role`` is the name of a valid color role, ``fg`` is the
  1327. foreground color, ``bg`` is the background color and each ``option``
  1328. is one of the color modifying options. Multiple color specifications
  1329. are then separated by a semicolon. For example:
  1330. .. code-block:: shell
  1331. export DJANGO_COLORS="error=yellow/blue,blink;notice=magenta"
  1332. would specify that errors be displayed using blinking yellow on blue,
  1333. and notices displayed using magenta. All other color roles would be
  1334. left uncolored.
  1335. Colors can also be specified by extending a base palette. If you put
  1336. a palette name in a color specification, all the colors implied by that
  1337. palette will be loaded. So:
  1338. .. code-block:: shell
  1339. export DJANGO_COLORS="light;error=yellow/blue,blink;notice=magenta"
  1340. would specify the use of all the colors in the light color palette,
  1341. *except* for the colors for errors and notices which would be
  1342. overridden as specified.
  1343. Bash completion
  1344. ---------------
  1345. If you use the Bash shell, consider installing the Django bash completion
  1346. script, which lives in :source:`extras/django_bash_completion` in the Django source
  1347. distribution. It enables tab-completion of ``django-admin`` and
  1348. ``manage.py`` commands, so you can, for instance...
  1349. * Type ``django-admin``.
  1350. * Press [TAB] to see all available options.
  1351. * Type ``sql``, then [TAB], to see all available options whose names start
  1352. with ``sql``.
  1353. See :doc:`/howto/custom-management-commands` for how to add customized actions.
  1354. Black formatting
  1355. ----------------
  1356. The Python files created by :djadmin:`startproject`, :djadmin:`startapp`,
  1357. :djadmin:`optimizemigration`, :djadmin:`makemigrations`, and
  1358. :djadmin:`squashmigrations` are formatted using the ``black`` command if it is
  1359. present on your ``PATH``.
  1360. If you have ``black`` globally installed, but do not wish it used for the
  1361. current project, you can set the ``PATH`` explicitly:
  1362. .. code-block:: shell
  1363. PATH=path/to/venv/bin django-admin makemigrations
  1364. For commands using ``stdout`` you can pipe the output to ``black`` if needed:
  1365. .. code-block:: shell
  1366. django-admin inspectdb | black -
  1367. ==========================================
  1368. Running management commands from your code
  1369. ==========================================
  1370. .. function:: django.core.management.call_command(name, *args, **options)
  1371. To call a management command from code use ``call_command()``.
  1372. ``name``
  1373. the name of the command to call or a command object. Passing the name is
  1374. preferred unless the object is required for testing.
  1375. ``*args``
  1376. a list of arguments accepted by the command. Arguments are passed to the
  1377. argument parser, so you can use the same style as you would on the command
  1378. line. For example, ``call_command('flush', '--verbosity=0')``.
  1379. ``**options``
  1380. named options accepted on the command-line. Options are passed to the command
  1381. without triggering the argument parser, which means you'll need to pass the
  1382. correct type. For example, ``call_command('flush', verbosity=0)`` (zero must
  1383. be an integer rather than a string).
  1384. Examples::
  1385. from django.core import management
  1386. from django.core.management.commands import loaddata
  1387. management.call_command("flush", verbosity=0, interactive=False)
  1388. management.call_command("loaddata", "test_data", verbosity=0)
  1389. management.call_command(loaddata.Command(), "test_data", verbosity=0)
  1390. Note that command options that take no arguments are passed as keywords
  1391. with ``True`` or ``False``, as you can see with the ``interactive`` option above.
  1392. Named arguments can be passed by using either one of the following syntaxes::
  1393. # Similar to the command line
  1394. management.call_command("dumpdata", "--natural-foreign")
  1395. # Named argument similar to the command line minus the initial dashes and
  1396. # with internal dashes replaced by underscores
  1397. management.call_command("dumpdata", natural_foreign=True)
  1398. # `use_natural_foreign_keys` is the option destination variable
  1399. management.call_command("dumpdata", use_natural_foreign_keys=True)
  1400. Some command options have different names when using ``call_command()`` instead
  1401. of ``django-admin`` or ``manage.py``. For example, ``django-admin
  1402. createsuperuser --no-input`` translates to ``call_command('createsuperuser',
  1403. interactive=False)``. To find what keyword argument name to use for
  1404. ``call_command()``, check the command's source code for the ``dest`` argument
  1405. passed to ``parser.add_argument()``.
  1406. Command options which take multiple options are passed a list::
  1407. management.call_command("dumpdata", exclude=["contenttypes", "auth"])
  1408. The return value of the ``call_command()`` function is the same as the return
  1409. value of the ``handle()`` method of the command.
  1410. Output redirection
  1411. ==================
  1412. Note that you can redirect standard output and error streams as all commands
  1413. support the ``stdout`` and ``stderr`` options. For example, you could write::
  1414. with open("/path/to/command_output", "w") as f:
  1415. management.call_command("dumpdata", stdout=f)