Skip to content

Instantly share code, notes, and snippets.

@davidBentoPereira
Last active October 22, 2020 07:02
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 davidBentoPereira/b7fc5f8f2c92299aed4b9d4b258ce14a to your computer and use it in GitHub Desktop.
Save davidBentoPereira/b7fc5f8f2c92299aed4b9d4b258ce14a to your computer and use it in GitHub Desktop.

Heroku Cheatsheet

  • Connect in SSH to the heroku app :
heroku ps:exec
  • Connect from CLI to Heroku PostgreSQL :
heroku pg:psql -a appname
  • List apps
heroku apps
  • Quickly install nano on Heroku :
mkdir /app/nano
curl https://github.com/Ehryk/heroku-nano/raw/master/heroku-nano-2.5.1/nano.tar.gz --location --silent | tar xz -C /app/nano
export PATH=$PATH:/app/nano

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment