From 1be2ad21b8605cf65395c1f528d7b3abe4305059 Mon Sep 17 00:00:00 2001 From: Dogukan Tufekci Date: Sun, 19 May 2013 02:52:23 +0300 Subject: [PATCH] Update quickstart.md Fixed naming bugs --- docs/tutorial/quickstart.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index 52fe3acf4..5437881c2 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -2,7 +2,7 @@ We're going to create a simple API to allow admin users to view and edit the users and groups in the system. -Create a new Django project, and start a new app called `quickstart`. Once you've set up a database and got everything synced and ready to go open up the app's directory and we'll get coding... +Create a new Django project called `rest_framework_tutorial`, and start a new app called `quickstart`. Set up a database and get everything synced. Open up the app's directory to get coding... ## Serializers @@ -55,7 +55,7 @@ We can easily break these down into individual views if we need to, but using vi ## URLs -Okay, now let's wire up the API URLs. On to `quickstart/urls.py`... +Okay, now let's wire up the API URLs. On to `rest_framework_tutorial/urls.py`... from django.conf.urls import patterns, url, include from rest_framework import routers @@ -85,6 +85,7 @@ We'd also like to set a few global settings. We'd like to turn on pagination, a INSTALLED_APPS = ( ... 'rest_framework', + 'quickstart', ) REST_FRAMEWORK = {