Arquivos estáticos do Django não encontrados no Heroku (com whitenoise)
Esta pergunta parece ser feita várias vezes, mas não posso corrigi-la.
Eu implantei um aplicativo django em produção comDEBUG = False
. Eu coloquei meuallowed_host
. eu usei{% load static from staticfiles %}
para carregar arquivos estáticos. Eu escrevo exatamente as configurações sugeridas pelo documento Heroku:
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'staticfiles')
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(PROJECT_ROOT, 'static'),
)
STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'
MAS recebi um erro 500. E recebi esse rastreamento (por e-mail)
...
`cache_name = self.clean_name(self.hashed_name(name))
File "/app/.heroku/python/lib/python3.5/site- packages/django/contrib/staticfiles/storage.py", line 94, in hashed_name (clean_name, self))
...
ValueError: The file ‘app/css/font.css’ could not be found with <whitenoise.django.GzipManifestStaticFilesStorage object at 0x7febf600a7f0>.`
Quando eu corroheroku run python manage.py collectstatic --noinput
Tudo parece bem:
276 static files copied to '/app/annuaire/staticfiles', 276 post-processed.
Alguém tem uma idéia para me ajudar, por favor?
obrigado
EDIT:
annuaire
|-- /annuaire
|-- -- /settings.py
|-- /app
|-- -- /static/...`
wsgi.py
from django.core.wsgi import get_wsgi_application
from whitenoise.django import DjangoWhiteNoise
application = get_wsgi_application()
application = DjangoWhiteNoise(application)