Skip to content

Instantly share code, notes, and snippets.

@sibinx7
Last active August 31, 2017 14:28
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 sibinx7/c42a8133f02b2d67ccdc114b7b2852db to your computer and use it in GitHub Desktop.
Save sibinx7/c42a8133f02b2d67ccdc114b7b2852db to your computer and use it in GitHub Desktop.
Heroku tips

Node Application

Heroku won't install devdependencies in production mode

heroku config:set NPM_CONFIG_PRODUCTION=false

Set env variables

heroku config:set GITHUB_USERNAME=joesmith

Multiple buildpacks

heroku buildpacks:add --index 3 buildpacks

Check last heroku commit

heroku releases --app your-app | grep -om 1 "[0-9a-f]\{7\}" | xargs git show
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment