Update quickstart.md

Using Django 1.7, the tutorial was not working because of the directory structure. 
The quickstart app should be created within the tutorial project.
This commit is contained in:
@ntoinet 2014-11-05 13:19:06 +01:00
parent 5250700659
commit c1391abc87

View File

@ -20,7 +20,7 @@ Create a new Django project named `tutorial`, then start a new app called `quick
# Set up a new project with a single application
django-admin.py startproject tutorial .
cd tutorial
cd tutorial/tutorial
django-admin.py startapp quickstart
cd ..