aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/quickstart.md
diff options
context:
space:
mode:
authorTom Christie2014-11-03 14:36:06 +0000
committerTom Christie2014-11-03 14:36:06 +0000
commitb106ebd2c0a19107f12d5b87cfbe0083aaaa60b9 (patch)
tree736da30fadc813385cc2359caeb30a8ef5d422cb /docs/tutorial/quickstart.md
parent650a91ac24cbd3e5b4ad5d7d7c6706fdf6160a78 (diff)
parent8861a7dfc757a88335048aa7bbccfc8a77850c48 (diff)
downloaddjango-rest-framework-b106ebd2c0a19107f12d5b87cfbe0083aaaa60b9.tar.bz2
Merge pull request #1800 from tomchristie/version-3.0
Version 3.0
Diffstat (limited to 'docs/tutorial/quickstart.md')
-rw-r--r--docs/tutorial/quickstart.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md
index 813e9872..c2dc4bea 100644
--- a/docs/tutorial/quickstart.md
+++ b/docs/tutorial/quickstart.md
@@ -26,11 +26,13 @@ Create a new Django project named `tutorial`, then start a new app called `quick
Now sync your database for the first time:
- python manage.py syncdb
+ python manage.py migrate
-Make sure to create an initial user named `admin` with a password of `password`. We'll authenticate as that user later in our example.
+We'll also create an initial user named `admin` with a password of `password`. We'll authenticate as that user later in our example.
-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...
+ python manage.py createsuperuser
+
+Once you've set up a database and initial user created and ready to go, open up the app's directory and we'll get coding...
## Serializers