A aula pode ser acessada em:
http://blog.algaworks.com/hospedagem-jsf-heroku
Vou deixar aqui as ações que foram executadas na aula e os comandos também.
Na aula foi utilizado o comando:
$ sudo apt-get install ruby-full
Consulte o link:
https://www.ruby-lang.org/pt/documentation/installation/
... para diferentes sistemas operacionais.
Na aula foi utilizado o comando:
$ wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh
Consulte o link:
https://devcenter.heroku.com/articles/heroku-cli
... para diferentes sistemas operacionais.
$ git clone https://github.com/algaworks/videoaula-jsf-hospedagem.git
$ cd /videoaula-jsf-hospedagem
$ mvn clean package
$ heroku local
$ heroku login
$ heroku create videoaula-jsf-hospedagem
$ heroku addons:create heroku-postgresql:hobby-dev
$ heroku config
$ heroku config:set JDBC_URL="...";
$ heroku config:set JDBC_USER="...";
$ heroku config:set JDBC_PASSWORD="..."
$ git push heroku master
$ heroku open
$ heroku logs --tail
$ heroku ps
$ heroku ps:scale web=1
$ heroku dyno:type web=hobby # Somente se já tiver cartão configurado.
$ heroku destroy --app videoaula-jsf-hospedagem