Skip to content

Instantly share code, notes, and snippets.

@tiagofer
Created September 20, 2020 19:36
Show Gist options
  • Save tiagofer/87488b8b350814916e9bd408dcae66ef to your computer and use it in GitHub Desktop.
Save tiagofer/87488b8b350814916e9bd408dcae66ef to your computer and use it in GitHub Desktop.
$ heroku create cartola-dash # change my-dash-app to a unique name
$ heroku git:remote -a cartola-dash
$ git add . # add all files to git
$ git commit -m 'Deploy Heroku'
$ git push heroku master # deploy code to heroku
$ heroku ps:scale web=1 # run the app with a 1 heroku "dyno"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment