José Samuel Aguilar Morales
Preguntacomo haces un push hacia heroku master? en que momento configuramos nuestro git del proyecto a trackear heroku?

Alejandro Sebastian Dubon Estrada
Estos son los pasos que recomienda heroku (hay que tenerlo instalado)
$ heroku login Create a new Git repository Initialize a git repository in a new or existing directory
$ cd my-project/ $ git init $ heroku git:remote -a backend-courses Deploy your application Commit your code to the repository and deploy it to Heroku using Git.
$ git add . $ git commit -am "make it better" $ git push heroku master