diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-08-15 04:15:59 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-08-15 04:15:59 +0000 |
| commit | 025b16178f45e31f055e5616752b25c874eeae02 (patch) | |
| tree | 87e8bb2a981459d6e85f83f8bc6fd2d172855e3b /docs/tutorial01.txt | |
| parent | 1303933fd904359fce1b45d67ccc3d59244ef388 (diff) | |
Changed docs/tutorial01.txt to use a tree format instead of 'ls' output -- thanks for the suggestion, Ken Kinder
git-svn-id: http://code.djangoproject.com/svn/django/trunk@500 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial01.txt')
| -rw-r--r-- | docs/tutorial01.txt | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt index 2657fde40b..11d38dfc1a 100644 --- a/docs/tutorial01.txt +++ b/docs/tutorial01.txt @@ -36,15 +36,18 @@ A project is a collection of settings for an instance of Django -- including database configuration, Django-specific options and application-specific settings. Let's look at what ``startproject`` created:: - $ cd myproject/ - $ ls - apps/ __init__.py settings/ - $ ls settings/ - __init__.py admin.py main.py urls/ - $ ls settings/urls/ - __init__.py admin.py main.py - $ ls apps/ - __init__.py + myproject/ + __init__.py + apps/ + __init__.py + settings/ + __init__.py + admin.py + main.py + urls/ + __init__.py + admin.py + main.py First, edit ``myproject/settings/main.py``. It's a normal Python module with module-level variables representing Django settings. Edit the file and change |
