django-admin.txt 66 KB

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