1
0
mirror of https://github.com/django/django.git synced 2025-07-04 09:49:12 +00:00

magic-removal: Small improvements to docs/tutorial01.txt

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2725 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-04-23 05:20:31 +00:00
parent 85f4b13804
commit 9bd6bef487

View File

@ -60,12 +60,17 @@ Let's look at what ``startproject`` created::
These files are:
* ``__init__.py``: An empty file that tells Python that this directory
should be considered a Python package. (Read `more about packages`_ in the
official Python docs if you're a Python beginner.)
* ``manage.py``: A command-line utility that lets you interact with this
Django project in various ways.
* ``settings.py``: Settings/configuration for this Django project.
* ``urls.py``: The URL declarations for this Django project; a "table of
contents" of your Django-powered site.
.. _more on packages: http://docs.python.org/tut/node8.html#packages
The development server
----------------------
@ -102,7 +107,7 @@ It worked!
Full docs for the development server are at `django-admin documentation`_.
.. django-admin documentation: http://www.djangoproject.com/documentation/django_admin/
.. _django-admin documentation: http://www.djangoproject.com/documentation/django_admin/
Your first page
---------------