J'ai un projet (myapp) dans heroku, mais je ne peux pas obtenir les fichiers statiques pour fonctionner correctement. Je suivais ce blog.
Mon Procfile
ressemble à ceci:
web: python myapp/manage.py collectstatic --noinput; bin/gunicorn_django --workers=4 --bind=0.0.0.0:$PORT myapp/settings.py
settings.py
:
...
STATIC_ROOT = os.path.join(PROJECT_PATH, 'staticfiles')
STATIC_URL = '/static/'
ADMIN_MEDIA_PREFIX = '/static/admin/'
STATICFILES_DIRS = (
# I have the static folder inside my app and not inside the project
os.path.join(PROJECT_PATH, 'cesar/static'),
)
...
Lors du redémarrage de l'aide d' heroku restart
c'est ce que l' heroku logs
montre:
...
Copying ...
114 static files copied to '/app/myapp/staticfiles'.
...
Mais quand je le fais, heroku run ls -l myapp/
je ne vois pas l' staticfiles
le dossier:
-rw------- 1 u5605 5605 0 Jan 28 16:53 __init__.py
drwx------ 4 u5605 5605 4096 Jan 28 16:53 cesar
-rw------- 1 u5605 5605 503 Jan 28 16:53 manage.py
-rw------- 1 u5605 5605 6292 Jan 28 16:53 settings.py
drwx------ 2 u5605 5605 4096 Jan 28 16:53 templates
-rw------- 1 u5605 5605 257 Jan 28 16:53 urls.py
-rw------- 1 u5605 5605 286 Jan 28 16:53 views.py
Ce qui me manque ou faire du tort?