LoginSignup
3
3

More than 5 years have passed since last update.

Heroku へのデプロイ手順

Last updated at Posted at 2015-11-01

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)

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3