# download heroku wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh # login to heroku heroku login # create heroku-git link (adding a heroku remote) heroku create # pushing a commit to heroku git push heroku master # one instance is running for heroku heroku ps:scale web=1 # open your heroku app heroku open # (optional) view logs heroku logs --tail