diff options
| author | Tom Christie | 2012-12-28 12:33:24 +0000 |
|---|---|---|
| committer | Tom Christie | 2012-12-28 12:33:24 +0000 |
| commit | 3e4242fc43def87fc6e0bda11afd8d3a82bd3ae3 (patch) | |
| tree | 5173935d1f56f87e7ba7885894dc1374502e65da /docs/index.md | |
| parent | eefd5b05fbd7639fa813728bde44f1614875866e (diff) | |
| download | django-rest-framework-3e4242fc43def87fc6e0bda11afd8d3a82bd3ae3.tar.bz2 | |
django.contrib.staticfiles no longer needs to be in INSTALLED_APPS
Diffstat (limited to 'docs/index.md')
| -rw-r--r-- | docs/index.md | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/docs/index.md b/docs/index.md index 5d90e9e5..69d972d0 100644 --- a/docs/index.md +++ b/docs/index.md @@ -59,18 +59,7 @@ Add `'rest_framework'` to your `INSTALLED_APPS` setting. 'rest_framework', ) -### Browseable API requirements - -If you're intending to use the browseable API you'll also want to also ensure you include `'django.contrib.staticfiles'` in your `INSTALLED_APPS` setting. - - INSTALLED_APPS = ( - ... - 'django.contrib.staticfiles', - 'rest_framework', - ) - -You'll proabably also want to add REST framework's login and logout views. -Add the following to your root `urls.py` file. +If you're intending to use the browseable API you'll probably also want to add REST framework's login and logout views. Add the following to your root `urls.py` file. urlpatterns = patterns('', ... |
