django-admin.txt 61 KB

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