Como reduzir o tamanho da lesma Heroku
#Run these commands in your cmd
heroku plugins:install heroku-repo
heroku repo:gc --app your-app-name
heroku repo:purge_cache --app your-app-name
#this will run an aggressive git clean on your repo
ParthRangarajan