diff options
| author | Tom Christie | 2014-08-18 11:54:14 +0100 |
|---|---|---|
| committer | Tom Christie | 2014-08-18 11:54:14 +0100 |
| commit | 92d51c813f7c6ef4b43ae83093fc18e94ce4139e (patch) | |
| tree | 2b493f3d1964dcaa99d8a10cf49fc360120eee6e /docs/tutorial/quickstart.md | |
| parent | dce30207dae1725a2b08232fc4dee34e0949b14b (diff) | |
| parent | 18eab53e892f2f579fd0bb4e1ca3cb47a074accc (diff) | |
| download | django-rest-framework-92d51c813f7c6ef4b43ae83093fc18e94ce4139e.tar.bz2 | |
Merge pull request #1688 from ekonstantinidis/quick-start-order
Updated quick start project set up order
Diffstat (limited to 'docs/tutorial/quickstart.md')
| -rw-r--r-- | docs/tutorial/quickstart.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index 029b56a2..0e60fa7c 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -6,8 +6,8 @@ We're going to create a simple API to allow admin users to view and edit the use Create a new Django project named `tutorial`, then start a new app called `quickstart`. - # Set up a new project - django-admin.py startproject tutorial + # Create the project directory + mkdir tutorial cd tutorial # Create a virtualenv to isolate our package dependencies locally @@ -18,6 +18,9 @@ Create a new Django project named `tutorial`, then start a new app called `quick pip install django pip install djangorestframework + # Set up a new project + django-admin.py startproject tutorial + # Create a new app python manage.py startapp quickstart |
