summaryrefslogtreecommitdiff
path: root/docs/tutorial03.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-01 19:02:55 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-01 19:02:55 +0000
commitd62f31228b3f9bffde707124d28d755239b78fd0 (patch)
tree7a68414f019828860d82882b6860b3882dd7d71a /docs/tutorial03.txt
parent7c738177dc061db656f79c7965a67ec269d6cc53 (diff)
Clarified Tutorial 3 to explain settings have changed -- thanks, Robin Munn
git-svn-id: http://code.djangoproject.com/svn/django/trunk@365 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial03.txt')
-rw-r--r--docs/tutorial03.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/tutorial03.txt b/docs/tutorial03.txt
index eaac221752..4652f662f2 100644
--- a/docs/tutorial03.txt
+++ b/docs/tutorial03.txt
@@ -35,6 +35,8 @@ application and will focus on creating the public interface -- "views."
In Django, each view is represented by a simple Python function.
+
+
Design your URLs
================
@@ -120,6 +122,11 @@ Fire up the Django development Web server, as we did in Tutorial 2::
django-admin.py runserver --settings="myproject.settings.main"
+(If you're coming here straight from Tutorial 2, note that we're now running
+the server with ``--settings=myproject.settings.main`` instead of
+``--settings=myproject.settings.admin``. You'll need to restart the server to
+change the ``settings`` parameter.)
+
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::