Heroku へのデプロイ手順
Heroku の Introduction ドキュメント「Push Local Changes」の抜粋。
$ cd path/to/app/dir
$ # some source or setting file modified
$ vi somesource.js
$ # Module install if needs
$ npm install
$ # Check it with local
$ heroku local
$ # git!
$ git add .
$ git commit -m "Some explaining"
$ git push heroku master
$ # check production
$ heroku open
(EOF)