django-admin.txt 47 KB

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