Skip to content

Commit

Permalink
Cleaned it up a little
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Jan 20, 2015
1 parent afc0fc8 commit 69eee81
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 15 deletions.
Binary file modified docs/_build/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/_build/doctrees/index.doctree
Binary file not shown.
15 changes: 10 additions & 5 deletions docs/_build/html/_sources/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,6 @@ inside its sealed space. You only need to create the virtualenv once, but you'll

Make a new directory and move into it.

.. code-block:: bash

$ mkdir code
$ cd code

Use ``pip`` on the command line to install `Djang <https://www.djangoproject.com/>`_, a Python "framework"
we'll use to put together our website.

Expand All @@ -212,6 +207,16 @@ Now use Django's ``django-admin.py`` command to create a new "project" that will

$ django-admin.py startproject project

Now jump into the project and we'll start setting it up.

.. code-block:: bash

$ cd project

.. note::

Wonder what all those weird files are in your new directory? Read all about them in the `official Django documentation <https://docs.djangoproject.com/en/1.7/intro/tutorial01/#creating-a-project>`_.

- Configure the settings
- Create an app
- Fire up the runserver for the first time to look at default admin
Expand Down
12 changes: 8 additions & 4 deletions docs/_build/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,6 @@ <h3>Python<a class="headerlink" href="#python" title="Permalink to this headline
</pre></div>
</div>
<p>Make a new directory and move into it.</p>
<div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>mkdir code
<span class="nv">$ </span><span class="nb">cd </span>code
</pre></div>
</div>
<p>Use <tt class="docutils literal"><span class="pre">pip</span></tt> on the command line to install <a class="reference external" href="https://www.djangoproject.com/">Djang</a>, a Python &#8220;framework&#8221;
we&#8217;ll use to put together our website.</p>
<div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>pip install Django
Expand All @@ -206,6 +202,14 @@ <h3>Python<a class="headerlink" href="#python" title="Permalink to this headline
<div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>django-admin.py startproject project
</pre></div>
</div>
<p>Now jump into the project and we&#8217;ll start setting it up.</p>
<div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span><span class="nb">cd </span>project
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Wonder what all those weird files are in your new directory? Read all about them in the <a class="reference external" href="https://docs.djangoproject.com/en/1.7/intro/tutorial01/#creating-a-project">official Django documentation</a>.</p>
</div>
<ul class="simple">
<li>Configure the settings</li>
<li>Create an app</li>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/searchindex.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 10 additions & 5 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,6 @@ inside its sealed space. You only need to create the virtualenv once, but you'll
Make a new directory and move into it.

.. code-block:: bash
$ mkdir code
$ cd code
Use ``pip`` on the command line to install `Djang <https://www.djangoproject.com/>`_, a Python "framework"
we'll use to put together our website.

Expand All @@ -212,6 +207,16 @@ Now use Django's ``django-admin.py`` command to create a new "project" that will
$ django-admin.py startproject project
Now jump into the project and we'll start setting it up.

.. code-block:: bash
$ cd project
.. note::

Wonder what all those weird files are in your new directory? Read all about them in the `official Django documentation <https://docs.djangoproject.com/en/1.7/intro/tutorial01/#creating-a-project>`_.

- Configure the settings
- Create an app
- Fire up the runserver for the first time to look at default admin
Expand Down

0 comments on commit 69eee81

Please sign in to comment.