Added '--settings' option to django-admin. This specifies which settings module to use, if you don't want to deal with setting the DJANGO_SETTINGS_MODULE environment variable. Refactored django-admin to use optparse. Updated the tutorials to use '--settings' instead of environment variables, which can be confusing.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@247 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-07-20 17:42:36 +00:00
parent 1b8c4c4556
commit ec31445c52
4 changed files with 90 additions and 61 deletions

View File

@ -1,5 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
from django.core import management from django.core import management
from optparse import OptionParser
import os, sys import os, sys
ACTION_MAPPING = { ACTION_MAPPING = {
@ -19,56 +20,83 @@ ACTION_MAPPING = {
'install': management.install, 'install': management.install,
} }
def usage(): NO_SQL_TRANSACTION = ('adminindex', 'dbcheck', 'install', 'sqlindexes')
sys.stderr.write("Usage: %s [action]\n" % sys.argv[0])
def get_usage():
"""
Returns a usage string. Doesn't do the options stuff, because optparse
takes care of that.
"""
usage = ["usage: %prog action [options]\nactions:"]
available_actions = ACTION_MAPPING.keys() available_actions = ACTION_MAPPING.keys()
available_actions.sort() available_actions.sort()
sys.stderr.write("Available actions:\n")
for a in available_actions: for a in available_actions:
func = ACTION_MAPPING[a] func = ACTION_MAPPING[a]
sys.stderr.write(" %s %s-- %s\n" % (a, func.args, getattr(func, 'help_doc', func.__doc__))) usage.append(" %s %s-- %s" % (a, func.args, getattr(func, 'help_doc', func.__doc__)))
return '\n'.join(usage)
class DjangoOptionParser(OptionParser):
def print_usage_and_exit(self):
self.print_help(sys.stderr)
sys.exit(1)
def print_error(msg, cmd):
sys.stderr.write("Error: %s\nRun %s --help for help." % (msg, cmd))
sys.exit(1) sys.exit(1)
if __name__ == "__main__": def main():
# Parse the command-line arguments. optparse handles the dirty work.
parser = DjangoOptionParser(get_usage())
parser.add_option('--settings',
help='Python path to settings module, e.g. "myproject.settings.main". If this isn\'t provided, the DJANGO_SETTINGS_MODULE environment variable will be used.')
options, args = parser.parse_args()
# Take care of options.
if options.settings:
os.environ['DJANGO_SETTINGS_MODULE'] = options.settings
# Run the appropriate action. Unfortunately, optparse can't handle
# positional arguments, so this has to parse/validate them.
try: try:
action = sys.argv[1] action = args[0]
except IndexError: except IndexError:
usage() print_error("An 'action' is required.")
if not ACTION_MAPPING.has_key(action): if not ACTION_MAPPING.has_key(action):
usage() print_error("Your 'action' was invalid.")
if action == 'init': if action == 'init':
ACTION_MAPPING[action]() ACTION_MAPPING[action]()
sys.exit(0)
elif action in ('startapp', 'startproject'): elif action in ('startapp', 'startproject'):
try: try:
name = sys.argv[2] name = args[1]
except IndexError: except IndexError:
usage() parser.print_usage_and_exit()
ACTION_MAPPING[action](name, os.getcwd()) ACTION_MAPPING[action](name, os.getcwd())
sys.exit(0)
elif action == 'runserver': elif action == 'runserver':
if len(sys.argv) < 3: if len(args) < 2:
port = '8000' port = '8000'
else: else:
port = sys.argv[2] port = args[1]
ACTION_MAPPING[action](port) ACTION_MAPPING[action](port)
elif action == 'dbcheck':
from django.core import meta
mod_list = meta.get_all_installed_modules()
else: else:
from django.core import meta from django.core import meta
try: if action == 'dbcheck':
mod_list = [meta.get_app(app_label) for app_label in sys.argv[2:]] mod_list = meta.get_all_installed_modules()
except ImportError, e: else:
sys.stderr.write("Error: %s. Are you sure your INSTALLED_APPS setting is correct?\n" % e) try:
sys.exit(1) mod_list = [meta.get_app(app_label) for app_label in args[1:]]
if not mod_list: except ImportError, e:
usage() sys.stderr.write("Error: %s. Are you sure your INSTALLED_APPS setting is correct?\n" % e)
if action not in ('adminindex', 'dbcheck', 'install', 'sqlindexes'): sys.exit(1)
print "BEGIN;" if not mod_list:
for mod in mod_list: parser.print_usage_and_exit()
output = ACTION_MAPPING[action](mod) if action not in NO_SQL_TRANSACTION:
if output: print "BEGIN;"
print '\n'.join(output) for mod in mod_list:
if action not in ('adminindex', 'dbcheck', 'install', 'sqlindexes'): output = ACTION_MAPPING[action](mod)
print "COMMIT;" if output:
print '\n'.join(output)
if action not in NO_SQL_TRANSACTION:
print "COMMIT;"
if __name__ == "__main__":
main()

View File

@ -27,7 +27,7 @@ initial setup.
Run the command ``django-admin.py startproject myproject``. That'll create a Run the command ``django-admin.py startproject myproject``. That'll create a
``myproject`` directory in your current directory. ``myproject`` directory in your current directory.
(``django-admin.py`` should be on your path if you installed Django via (``django-admin.py`` 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 its setup.py utility. If it's not on your path, you can find it in
``site-packages/django/bin``; consider symlinking to it from some place ``site-packages/django/bin``; consider symlinking to it from some place
on your path, such as /usr/local/bin.) on your path, such as /usr/local/bin.)
@ -67,9 +67,20 @@ comprehensively tested with that database. If you find any bugs in Django's
MySQL bindings, please file them in `Django's ticket system`_ so we can fix them MySQL bindings, please file them in `Django's ticket system`_ so we can fix them
immediately. immediately.
Once you've done that, you need to tell Django which settings module you're Now, take a second to make sure ``myproject`` is on your Python path. You
currently using. Do that by setting an environment variable, can do this by copying ``myproject`` to Python's ``site-packages`` directory,
``DJANGO_SETTINGS_MODULE``. Here's how you do that in the Bash shell on Unix:: or you can do it by altering the ``PYTHONPATH`` environment variable. See the
`Python path documentation`_ for more information.
Run the following command::
django-admin.py init --settings='myproject.settings.main'
The ``django-admin.py`` utility generally needs to know which settings module
you're using. Here, we're doing that by specifying ``settings=`` on the command
line, but that can get tedious. If you don't want to type ``settings=`` each
time, you can set the ``DJANGO_SETTINGS_MODULE`` environment variable. Here's
how you do that in the Bash shell on Unix::
export DJANGO_SETTINGS_MODULE=myproject.settings.main export DJANGO_SETTINGS_MODULE=myproject.settings.main
@ -77,24 +88,15 @@ On Windows, you'd use ``set`` instead::
set DJANGO_SETTINGS_MODULE=myproject.settings.main set DJANGO_SETTINGS_MODULE=myproject.settings.main
Note this path is in Python package syntax. Your project has to be somewhere on If you don't see any errors after running ``django-admin.py init``, you know it
your `Python path`_ -- so that the Python statement ``import myproject.settings.main`` worked. That command initialized your database with Django's core database
works. Throughout Django, you'll be referring to your projects and apps via tables. If you're interested, run the PostgreSQL or MySQL command-line client
Python package syntax. and type "\\dt" (PostgreSQL) or "SHOW TABLES;" (MySQL) to display the tables.
Then run the following command::
django-admin.py init
If you don't see any errors, you know it worked. That command initialized your
database with Django's core database tables. If you're interested, run the
PostgreSQL or MySQL command-line client and type "\\dt" (PostgreSQL) or
"SHOW TABLES;" (MySQL) to display the tables.
Now you're set to start doing work. You won't have to take care of this boring Now you're set to start doing work. You won't have to take care of this boring
administrative stuff again. administrative stuff again.
.. _`Python path`: http://docs.python.org/tut/node8.html#SECTION008110000000000000000 .. _`Python path documentation`: http://docs.python.org/tut/node8.html#SECTION008110000000000000000
.. _Django's ticket system: http://code.djangoproject.com/report/1 .. _Django's ticket system: http://code.djangoproject.com/report/1
Creating models Creating models
@ -104,6 +106,10 @@ Change into the ``myproject/apps`` directory and type this command::
django-admin.py startapp polls django-admin.py startapp polls
(From now on, this tutorial will leave out the ``--settings`` parameter and
will assume you've either set your ``DJANGO_SETTINGS_MODULE`` environment
variable or included the ``--settings`` option in your call to the command.)
That'll create a directory structure like this:: That'll create a directory structure like this::
polls/ polls/

View File

@ -30,19 +30,16 @@ Start the development server
To make things easy, Django comes with a pure-Python Web server that builds on To make things easy, Django comes with a pure-Python Web server that builds on
the BaseHTTPServer included in Python's standard library. Let's start the the BaseHTTPServer included in Python's standard library. Let's start the
server and explore the admin site. First, set the ``DJANGO_SETTINGS_MODULE`` server and explore the admin site.
environment variable to the location of your admin settings::
export DJANGO_SETTINGS_MODULE=myproject.settings.admin Just run the following command to start the server::
Then, run this command to start the server:: django-admin.py runserver --settings="myproject.settings.admin"
django-admin.py runserver
It'll start a Web server running locally -- on port 8000, by default. If you It'll start a Web server running locally -- on port 8000, by default. If you
want to change the server's port, pass it as a command-line argument:: want to change the server's port, pass it as a command-line argument::
django-admin.py runserver 8080 django-admin.py runserver 8080 --settings="myproject.settings.admin"
DON'T use this server in anything resembling a production environment. It's DON'T use this server in anything resembling a production environment. It's
intended only for use while developing. intended only for use while developing.

View File

@ -113,11 +113,9 @@ Write your first view
Well, we haven't created any views yet -- we just have the URLconf. But let's Well, we haven't created any views yet -- we just have the URLconf. But let's
make sure Django is following the URLconf properly. make sure Django is following the URLconf properly.
Set your ``DJANGO_SETTINGS_MODULE`` environment variable to your main settings Fire up the Django development Web server, as we did in Tutorial 2::
(``myproject.settings.main``), as we did with the admin settings in Tutorial 2.
Then, fire up the Django development Web server, as we also did in Tutorial 2::
django-admin.py runserver django-admin.py runserver --settings="myproject.settings.admin"
Now go to "http://localhost:8000/polls/" on your domain in your Web browser. Now go to "http://localhost:8000/polls/" on your domain in your Web browser.
You should get a Python traceback with the following error message:: You should get a Python traceback with the following error message::