Commit e71d0133 authored by Julien Phalip's avatar Julien Phalip
Browse files

[1.3.X] Fixed #16669 -- Made the startproject instruction formatting easier to...

[1.3.X] Fixed #16669 -- Made the startproject instruction formatting easier to read and more consistent with other formatting in the tutorial part 1. Thanks to Daniel Lawrence and Aymeric Augustin.

Backport of r16664 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16665 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 6f9d2506
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -36,8 +36,13 @@ including database configuration, Django-specific options and
application-specific settings.

From the command line, ``cd`` into a directory where you'd like to store your
code, then run the command ``django-admin.py startproject mysite``. This will
create a ``mysite`` directory in your current directory.
code, then run the following command:

.. code-block:: bash

   django-admin.py startproject mysite
   
This will create a ``mysite`` directory in your current directory.

.. admonition:: Script name may differ in distribution packages