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 /README.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 'README.md')
| -rw-r--r-- | README.md | 13 | 
1 files changed, 1 insertions, 12 deletions
| @@ -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('',          ... | 
