reference docs to more info about dj-static

This commit is contained in:
Nate Aune 2013-09-27 11:01:17 -04:00
parent 9dc2de4301
commit 31e7456cbc

View File

@ -26,6 +26,9 @@ os.environ.setdefault("DJANGO_CONFIGURATION", "Local")
# file. This includes Django's development server, if the WSGI_APPLICATION # file. This includes Django's development server, if the WSGI_APPLICATION
# setting points here. # setting points here.
from configurations.wsgi import get_wsgi_application from configurations.wsgi import get_wsgi_application
# serve static assets using wsgi
# https://devcenter.heroku.com/articles/django-assets
from dj_static import Cling from dj_static import Cling
application = Cling(get_wsgi_application()) application = Cling(get_wsgi_application())