Database Reference
In-Depth Information
learning-heroku-postgres-app created
Next you will create a directory in your computer and link it with Heroku to perform fu-
ture deployments of your source code. Open your terminal and type the following com-
mands:
$ mkdir your-app-name
$ cd your-app-name
$ git init
$ heroku git:remote -a your-app-name
Git remote heroku added
Finally, you are able to deploy your source code at any time through these commands:
$ git add .
$ git commit -am "My updates"
$ git push heroku master
Search WWH ::




Custom Search