ProgrammingFA
778 subscribers
5 photos
3 files
19 links
Все про программирование. Статьи, видео, обсуждения.

Бот - @ProgrammingFAbot
Чат - @ProgrammingFAchat
По вопросам и рекламе - @abinba
Download Telegram
#Heroku

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