From 025b16178f45e31f055e5616752b25c874eeae02 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 15 Aug 2005 04:15:59 +0000 Subject: [PATCH] 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 --- docs/tutorial01.txt | 21 ++++++++++++--------- 1 file 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