Skip to content

Instantly share code, notes, and snippets.

@myobie
Created November 17, 2018 20:35
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 myobie/33ac17ce5e0245de0ed940aee3d116fb to your computer and use it in GitHub Desktop.
Save myobie/33ac17ce5e0245de0ed940aee3d116fb to your computer and use it in GitHub Desktop.
Always use heroku local (foreman) for the server
#!/bin/bash
which heroku > /dev/null
if [[ "$?" != "0" ]]; then
echo "You need to brew install heroku"
exit 1
fi
heroku local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment