Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

django gunicorn static file not found

#All You need is dj-static package
pip install dj-static

#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 Cling

application = Cling(get_wsgi_application())

#Add to Your urls.py
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
#after urlpatterns=[]
urlpatterns += staticfiles_urlpatterns()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #django #gunicorn #static #file
ADD COMMENT
Topic
Name
9+3 =