django-admin.txt 56 KB

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