2
0

django-admin.txt 59 KB

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