Serve production static files with Django..
Project description
This is a simple Django middleware utility that allows you to properly serve static assets from production with a WSGI server like Gunicorn.
Usage
Configure your static assets in settings.py:
STATIC_ROOT = 'staticfiles' STATIC_URL = '/static/'
Then, update your wsgi.py file to use dj-static:
from django.core.wsgi import get_wsgi_application from dj_static import StaticCling application = StaticCling(get_wsgi_application())
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dj-static-0.0.1.tar.gz
(2.1 kB
view hashes)