Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 651 Bytes

Heroku_Commands.md

File metadata and controls

44 lines (32 loc) · 651 Bytes

Heroku: Commands

Create

$ heroku create
> Creating app... done, ⬢ thawing-inlet-61413
> https://thawing-inlet-61413.herokuapp.com/ | https://git.heroku.com/thawing-inlet-61413.git
git remote -v
> heroku  https://git.heroku.com/thawing-inlet-61413.git (fetch)
> heroku  https://git.heroku.com/thawing-inlet-61413.git (push)

Deploy

Deploy master

$ git push heroku master
> Initializing repository, done.
> updating 'refs/heads/master'
> ...

Deploy a branch

$ git push heroku testbranch:master

Logs

$ heroku logs

Open Heroku Site

$ heroku open