#Heroku
Getting started with Heroku.
If you have a repository you need to deploy to heroku, you should follow these commands:
Getting started with Heroku.
If you have a repository you need to deploy to heroku, you should follow these commands:
$ heroku login
$ git init
$ git add .
$ git commit -m "Initial commit"
$ heroku create
$ git push heroku master
If you already have a heroku repository, in order to connect to that repository, you should: $ heroku git:remote -a app_name
If you have build limit errors:$ heroku builds:cancel
$ heroku restart
To connect to heroku remote terminal:$ heroku run bash
👍1