From c1391abc8746d78fc15982ef994293027b19b266 Mon Sep 17 00:00:00 2001 From: "@ntoinet" Date: Wed, 5 Nov 2014 13:19:06 +0100 Subject: [PATCH] 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. --- docs/tutorial/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index c2dc4bea9..d4e66c860 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -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 ..