memomem

備忘録・メモ置き場

Heroku ことはじめ

devcenter.heroku.com

qiita.com

$ heroku open

$ heroku local web

qiita.com

qiita.com

package.json作成  
npm init

gitリポジトリを作成  
git init

gitリポジトリにアプリ追加  
git add --a

gitリポジトリにコミット  
git commit -m "commit"

herokuアプリ追加  
heroku create  
または
heroku create アプリケーションネーム

herokuにプッシュ  
git push heroku master

アプリを開く  
heroku open

qiita.com

qiita.com

qiita.com

qiita.com

なんだかんだ公式サンプルが一番良い。 github.com

Deploy changes

$ git add .  
$ git commit -am "make it better"  
$ git push heroku master