aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorTom Christie2012-12-28 12:33:24 +0000
committerTom Christie2012-12-28 12:33:24 +0000
commit3e4242fc43def87fc6e0bda11afd8d3a82bd3ae3 (patch)
tree5173935d1f56f87e7ba7885894dc1374502e65da /README.md
parenteefd5b05fbd7639fa813728bde44f1614875866e (diff)
downloaddjango-rest-framework-3e4242fc43def87fc6e0bda11afd8d3a82bd3ae3.tar.bz2
django.contrib.staticfiles no longer needs to be in INSTALLED_APPS
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 1 insertions, 12 deletions
diff --git a/README.md b/README.md
index 7308c577..87e524a7 100644
--- a/README.md
+++ b/README.md
@@ -60,18 +60,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('',
...