Skip to content

Latest commit

 

History

History
 
 

heroku

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Deploy total.js app on Heroku

  • release.js is an initial script
  • Procfile is for Heroku (their internal service)

Important

  • config-release can't contain parameter: default-ip and default-port

Deploy (first)

Heroku documentation: https://devcenter.heroku.com/articles/getting-started-with-nodejs

$ git init
$ git add .
$ git commit -m "first commit"
$ git push heroku master

Deploy (update)

$ git add .
$ git commit -m "next update"
$ git push heroku master

## Watch Heroku live logs

$ heroku logs