From 69836e5970b51880ff94917842b44e4edafd3ba8 Mon Sep 17 00:00:00 2001 From: Dan Braghis Date: Sun, 22 Feb 2015 11:29:24 +0000 Subject: [PATCH] Minor docs cleanup --- .../getting_started/creating_your_project.rst | 17 +++++------- docs/index.rst | 27 +++++++------------ 2 files changed, 15 insertions(+), 29 deletions(-) diff --git a/docs/getting_started/creating_your_project.rst b/docs/getting_started/creating_your_project.rst index 83cb54014..38ffc3521 100644 --- a/docs/getting_started/creating_your_project.rst +++ b/docs/getting_started/creating_your_project.rst @@ -20,7 +20,7 @@ Running it Firstly, open up a command line shell in your new projects directory. -* **1. Create a virtual environment** +1. **Create a virtual environment** This is only required when you first run your project. This creates a folder to install extra Python modules into. @@ -41,8 +41,7 @@ Firstly, open up a command line shell in your new projects directory. pip install virtualenv virtualenv venv - -* **2. Activate the virtual environment** +2. **Activate the virtual environment** **Linux/Mac OSX:** :code:`source venv/bin/activate` @@ -50,25 +49,21 @@ Firstly, open up a command line shell in your new projects directory. https://docs.python.org/3/library/venv.html - -* **3. Install PIP requirements** +3. **Install PIP requirements** :code:`pip install -r requirements.txt` - -* **4. Create the database** +4. **Create the database** By default, this would create an SQLite database file within the project directory. :code:`python manage.py migrate` - -* **5. Create an admin user** +5. **Create an admin user** :code:`python manage.py createsuperuser` - -* **6. Run the development server** +6. **Run the development server** :code:`python manage.py runserver` diff --git a/docs/index.rst b/docs/index.rst index 1f99d42ea..80b30e8db 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -7,30 +7,21 @@ Below are some useful links to help you get started with Wagtail. * **First steps** - - :doc:`getting_started/trying_wagtail` - - :doc:`getting_started/installation` - - :doc:`getting_started/creating_your_project` + * :doc:`getting_started/trying_wagtail` + * :doc:`getting_started/installation` + * :doc:`getting_started/creating_your_project` * **Creating your Wagtail site** - - :doc:`core_components/pages/creating_pages` - - :doc:`Writing templates ` - - :doc:`core_components/images/index` - - :doc:`core_components/search/index` - - :doc:`howto/third_party_tutorials` + * :doc:`core_components/pages/creating_pages` + * :doc:`Writing templates ` + * :doc:`core_components/images/index` + * :doc:`core_components/search/index` + * :doc:`howto/third_party_tutorials` * **Using Wagtail** - - :doc:`Editors guide ` + * :doc:`Editors guide ` Index