Add a section for configuring static files so the browsable API css will

load
This commit is contained in:
dpetzel 2013-10-05 18:21:44 -04:00
parent 3833f1d55f
commit ac438177b8

View File

@ -128,6 +128,16 @@ We'd also like to set a few global settings. We'd like to turn on pagination, a
'PAGINATE_BY': 10
}
In order for the browsable API to properly render you should also add the
following information into `tutorial/settings.py`
INSTALLED_APPS = (
...
'django.contrib.staticfiles',
)
STATIC_URL = '/static/'
Okay, we're done.
---