Django

Code

Changeset 365

Show
Ignore:
Timestamp:
08/01/05 14:02:55 (3 years ago)
Author:
adrian
Message:

Clarified Tutorial 3 to explain settings have changed -- thanks, Robin Munn

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/tutorial03.txt

    r364 r365  
    3636    In Django, each view is represented by a simple Python function. 
    3737 
     38 
     39 
    3840Design your URLs 
    3941================ 
     
    120122 
    121123    django-admin.py runserver --settings="myproject.settings.main" 
     124 
     125(If you're coming here straight from Tutorial 2, note that we're now running 
     126the server with ``--settings=myproject.settings.main`` instead of 
     127``--settings=myproject.settings.admin``. You'll need to restart the server to 
     128change the ``settings`` parameter.) 
    122129 
    123130Now go to "http://localhost:8000/polls/" on your domain in your Web browser.