django-admin.txt 53 KB

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