Skip to content

Instantly share code, notes, and snippets.

@dcrec1
Created September 25, 2015 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcrec1/e4614cd2600b59174a24 to your computer and use it in GitHub Desktop.
Save dcrec1/e4614cd2600b59174a24 to your computer and use it in GitHub Desktop.
Heroku deploy script
rake assets:precompile
if [[ $(git status | grep assets) ]] ; then
echo "Precompile assets!"
else
git push heroku master
heroku run rake db:migrate --app <app>
heroku restart --app <app>
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment