Saltar a contenido

INIT

INSTALL

curl https://cli-assets.heroku.com/install-ubuntu.sh | sh

CONECTARSE A UNA APP

NOS POSAMOS EN EL MISMO REPOSITORIO SINCRONIZADO CON HEROKU

heroku login

heroku apps

heroku git:remote -a myaplication

SHELL / BASH - HEROKU

MÉTODO UNO

heroku login

heroku apps

heroku run bash --app myaplication

----- Segundo modo SHELL / BASH

heroku login

heroku apps

heroku git:remote -a myaplication

heroku run bash

Otro modo es entrando en el mismo repositorio:

font: https://stackoverflow.com/questions/35857787/running-bash-on-heroku-wont-work

PUSH TO HEROKU

git push heroku main

font:

https://stackoverflow.com/questions/52704791/how-to-connect-to-the-selected-app-with-heroku-cli

PUSH & DEPLOY

heroku git:remote -a new_app

git push heroku main

font:https://stackoverflow.com/questions/52704791/how-to-connect-to-the-selected-app-with-heroku-cli

Using CLI Plugins

https://devcenter.heroku.com/articles/using-cli-plugins

VIM INSTALL ON HEROKU

instalar vim:

heroku plugins:install @jasonheecs/heroku-vim

abrir con vim:

heroku vim -a

**