2005-08-11 04:24:51 +08:00
|
|
|
===========================
|
|
|
|
The django-admin.py utility
|
|
|
|
===========================
|
|
|
|
|
|
|
|
``django-admin.py`` is Django's command-line utility for administrative tasks.
|
|
|
|
This document outlines all it can do.
|
|
|
|
|
|
|
|
The ``django-admin.py`` script should be on your system path if you installed
|
|
|
|
Django via its setup.py utility. If it's not on your path, you can find it in
|
|
|
|
``site-packages/django/bin`` within your Python installation. Consider
|
|
|
|
symlinking to it from some place on your path, such as ``/usr/local/bin``.
|
|
|
|
|
|
|
|
Usage
|
|
|
|
=====
|
|
|
|
|
|
|
|
``django-admin.py action [options]``
|
|
|
|
|
|
|
|
``action`` should be one of the actions listed in this document. ``options``,
|
|
|
|
which is optional, should be zero or more of the options listed in this
|
|
|
|
document.
|
|
|
|
|
|
|
|
Run ``django-admin.py --help`` to display a help message that includes a terse
|
2005-08-11 04:29:55 +08:00
|
|
|
list of all available actions and options.
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
Most actions take a list of "modelmodule"s. A "modelmodule," in this case, is
|
|
|
|
the name of a file containing Django models. For example, if you have a model
|
|
|
|
module called ``myproject/apps/polls/pollmodels.py``, the "modelmodule" in this
|
|
|
|
case would be ``"pollmodels"``.
|
2005-08-11 04:24:51 +08:00
|
|
|
|
|
|
|
Available actions
|
|
|
|
=================
|
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
adminindex [modelmodule modelmodule ...]
|
2005-09-03 03:05:51 +08:00
|
|
|
----------------------------------------
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
Prints the admin-index template snippet for the given model module(s).
|
2005-08-11 04:24:51 +08:00
|
|
|
|
|
|
|
Use admin-index template snippets if you want to customize the look and feel of
|
|
|
|
your admin's index page. See `Tutorial 2`_ for more information.
|
|
|
|
|
|
|
|
.. _Tutorial 2: http://www.djangoproject.com/documentation/tutorial2/
|
|
|
|
|
2005-09-26 06:03:30 +08:00
|
|
|
createcachetable [tablename]
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
Creates a cache table named ``tablename`` for use with the database cache
|
|
|
|
backend. See the `cache documentation`_ for more information.
|
|
|
|
|
|
|
|
.. _cache documentation: http://www.djangoproject.com/documentation/cache/
|
|
|
|
|
2005-08-11 04:24:51 +08:00
|
|
|
createsuperuser
|
|
|
|
---------------
|
|
|
|
|
|
|
|
Creates a superuser account interactively. It asks you for a username, e-mail
|
|
|
|
address and password.
|
|
|
|
|
|
|
|
init
|
|
|
|
----
|
|
|
|
|
|
|
|
Initializes the database with the tables and data Django needs by default.
|
|
|
|
Specifically, these are the database tables from the ``auth`` and ``core``
|
|
|
|
models.
|
|
|
|
|
|
|
|
inspectdb [dbname]
|
|
|
|
------------------
|
|
|
|
|
|
|
|
Introspects the database tables in the given database and outputs a Django
|
|
|
|
model module to standard output.
|
|
|
|
|
|
|
|
Use this if you have a legacy database with which you'd like to use Django.
|
|
|
|
The script will inspect the database and create a model for each table within
|
|
|
|
it.
|
|
|
|
|
|
|
|
This feature is meant as a shortcut, not as definitive model generation. After
|
|
|
|
you run it, you'll want to look over the generated models yourself to make
|
|
|
|
customizations. In particular, you'll need to do this:
|
|
|
|
|
|
|
|
* Rearrange models' order, so that models that refer to other models are
|
|
|
|
ordered properly.
|
2005-08-18 12:12:01 +08:00
|
|
|
* Add ``primary_key=True`` to one field in each model. The ``inspectdb``
|
2005-08-11 04:24:51 +08:00
|
|
|
doesn't yet introspect primary keys.
|
|
|
|
|
2005-08-11 05:02:07 +08:00
|
|
|
``inspectdb`` only works with PostgreSQL and MySQL. Foreign-key detection only
|
|
|
|
works in PostgreSQL.
|
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
install [modelmodule modelmodule ...]
|
2005-09-03 03:05:51 +08:00
|
|
|
-------------------------------------
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
Executes the equivalent of ``sqlall`` for the given model module(s).
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-08-20 05:23:56 +08:00
|
|
|
runserver [optional port number, or ipaddr:port]
|
|
|
|
------------------------------------------------
|
2005-08-11 04:24:51 +08:00
|
|
|
|
|
|
|
Starts a lightweight development Web server on the local machine. By default,
|
2005-08-20 05:23:56 +08:00
|
|
|
the server runs on port 8000 on the IP address 127.0.0.1. You can pass in an
|
|
|
|
IP address and port number explicitly.
|
2005-08-11 04:24:51 +08:00
|
|
|
|
|
|
|
If you run this script as a user with normal privileges (recommended), you
|
|
|
|
might not have access to start a port on a low port number. Low port numbers
|
|
|
|
are reserved for superusers (root).
|
|
|
|
|
|
|
|
DO NOT USE THIS SERVER IN A PRODUCTION SETTING.
|
|
|
|
|
|
|
|
The development server automatically reloads Python code for each request, as
|
|
|
|
needed. You don't need to restart the server for code changes to take effect.
|
|
|
|
|
2005-08-18 12:50:09 +08:00
|
|
|
When you start the server, and each time you change Python code while the
|
|
|
|
server is running, the server will validate all of your installed models. (See
|
|
|
|
the "validate" option below.) If the validator finds errors, it will print
|
|
|
|
them to standard output, but it won't stop the server.
|
|
|
|
|
2005-08-11 04:24:51 +08:00
|
|
|
You can run as many servers as you want, as long as they're on separate ports.
|
|
|
|
Just execute ``django-admin.py runserver`` more than once.
|
|
|
|
|
2005-08-20 05:23:56 +08:00
|
|
|
Examples:
|
|
|
|
~~~~~~~~~
|
|
|
|
|
|
|
|
Port 7000 on IP address 127.0.0.1::
|
|
|
|
|
|
|
|
django-admin.py runserver 7000
|
|
|
|
|
|
|
|
Port 7000 on IP address 1.2.3.4::
|
|
|
|
|
|
|
|
django-admin.py runserver 1.2.3.4:7000
|
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
sql [modelmodule modelmodule ...]
|
2005-09-03 03:05:51 +08:00
|
|
|
---------------------------------
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
Prints the CREATE TABLE SQL statements for the given model module(s).
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
sqlall [modelmodule modelmodule ...]
|
2005-09-03 03:05:51 +08:00
|
|
|
------------------------------------
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
Prints the CREATE TABLE and initial-data SQL statements for the given model module(s).
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
sqlclear [modelmodule modelmodule ...]
|
2005-09-03 03:05:51 +08:00
|
|
|
--------------------------------------
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
Prints the DROP TABLE SQL statements for the given model module(s).
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
sqlindexes [modelmodule modelmodule ...]
|
2005-09-03 03:05:51 +08:00
|
|
|
----------------------------------------
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
Prints the CREATE INDEX SQL statements for the given model module(s).
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
sqlinitialdata [modelmodule modelmodule ...]
|
2005-09-03 03:05:51 +08:00
|
|
|
--------------------------------------------
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
Prints the initial INSERT SQL statements for the given model module(s).
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
sqlreset [modelmodule modelmodule ...]
|
2005-09-03 03:05:51 +08:00
|
|
|
--------------------------------------
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
Prints the DROP TABLE SQL, then the CREATE TABLE SQL, for the given model module(s).
|
2005-08-11 04:24:51 +08:00
|
|
|
|
2005-09-03 02:26:16 +08:00
|
|
|
sqlsequencereset [modelmodule modelmodule ...]
|
2005-09-03 03:05:51 +08:00
|
|
|
----------------------------------------------
|
2005-08-11 04:24:51 +08:00
|
|
|
|
|
|
|
Prints the SQL statements for resetting PostgreSQL sequences for the given
|
2005-09-03 02:26:16 +08:00
|
|
|
model module(s).
|
2005-08-11 04:24:51 +08:00
|
|
|
|
|
|
|
See http://simon.incutio.com/archive/2004/04/21/postgres for more information.
|
|
|
|
|
|
|
|
startapp [appname]
|
|
|
|
------------------
|
|
|
|
|
|
|
|
Creates a Django app directory structure for the given app name in the current
|
|
|
|
directory.
|
|
|
|
|
|
|
|
startproject [projectname]
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
Creates a Django project directory structure for the given project name in the
|
|
|
|
current directory.
|
2005-08-11 04:29:55 +08:00
|
|
|
|
2005-08-15 23:24:56 +08:00
|
|
|
validate
|
|
|
|
--------
|
|
|
|
|
|
|
|
Validates all installed models (according to the ``INSTALLED_APPS`` setting)
|
|
|
|
and prints validation errors to standard output.
|
|
|
|
|
2005-08-11 04:29:55 +08:00
|
|
|
Available options
|
|
|
|
=================
|
|
|
|
|
|
|
|
--settings
|
|
|
|
==========
|
|
|
|
|
|
|
|
Example usage::
|
|
|
|
|
|
|
|
django-admin.py init --settings='myproject.settings.main'
|
|
|
|
|
|
|
|
Explicitly specifies the settings module to use. The settings module should be
|
|
|
|
in Python path syntax, e.g. "myproject.settings.main". If this isn't provided,
|
|
|
|
``django-admin.py`` will use the DJANGO_SETTINGS_MODULE environment variable.
|
|
|
|
|
|
|
|
--help
|
|
|
|
======
|
|
|
|
|
|
|
|
Displays a help message that includes a terse list of all available actions and
|
|
|
|
options.
|