Collectstatic error while deploying Django app to Heroku

I just updated to Django 1.10 today and had the exact same problem. Your static settings are identical to mine as well. This worked for me, run the following commands: disable the collectstatic during a deploy heroku config:set DISABLE_COLLECTSTATIC=1 deploy git push heroku master run migrations (django 1.10 added at least one) heroku run python … Read more