Update tutorial section 1 with django-admin

This commit is contained in:
Alex Scott 2016-11-10 19:00:12 -05:00 committed by GitHub
parent 8bab7f8d58
commit f3c805eade

View File

@ -38,7 +38,7 @@ To get started, let's create a new project to work with.
Once that's done we can create an app that we'll use to create a simple Web API.
python manage.py startapp snippets
django-admin.py startapp snippets
We'll need to add our new `snippets` app and the `rest_framework` app to `INSTALLED_APPS`. Let's edit the `tutorial/settings.py` file: