I\'m trying to deploy a Django app to Heroku, it starts to build, download and installs everything, but that\'s what I get when it comes to collecting static files
I face same problem..
Follow this step
DISABLE_COLLECTSTATIC=1git push heroku masterpython manage.py collectstaticpython manage.py testSTATIC_ROOT = os.path.join(BASE_DIR, 'static').heroku run python manage.py collectstatic.heroku run python manage.py migrateheroku config:unset DISABLE_COLLECTSTATIC (for future use).