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=1
git push heroku master
python manage.py collectstatic
python manage.py test
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
.heroku run python manage.py collectstatic
.heroku run python manage.py migrate
heroku config:unset DISABLE_COLLECTSTATIC
(for future use).