This commit is contained in:
Chris Curvey 2013-11-12 08:11:17 -08:00
commit 214e2faafb
2 changed files with 11 additions and 2 deletions

View File

@ -77,8 +77,11 @@ Create a GitHub repo and push it there::
Now take a look at your repo. Don't forget to carefully look at the generated README. Awesome, right? Now take a look at your repo. Don't forget to carefully look at the generated README. Awesome, right?
It's time to write the code!!! Now install all the supporting libraries into your virtualenv::
$ pip install -r requirements/local.txt
It's time to write the code!!!
"Your Stuff" "Your Stuff"
------------- -------------

View File

@ -59,6 +59,12 @@
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% if messages %}
{% for message in messages %}
<div class="alert {% if message.tags %}alert-{{ message.tags }}"{% endif %}>{{ message }}</div>
{% endfor %}
{% endif %}
{% block content %} {% block content %}
<p>Use this document as a way to quick start any new project.</p> <p>Use this document as a way to quick start any new project.</p>
{% endblock content %} {% endblock content %}