1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Heroku 自分用メモ

Last updated at Posted at 2016-08-20

Heroku Toolbeltの開発PCへのインストール

ココから

ログイン

$ heroku login

herokuへのアプリケーション登録

$ heroku create [App Name]
  • この時点でgitのremote "heroku" が登録される
  • githubでもソースコード管理したかったらgit remote add origin [githubのURL]しておく

アプリケーションの作成

  • よしなに。

環境変数の設定(管理画面上の「Config Variables」)

heroku config:set [環境変数のKEY=環境変数のVALUE]

アプリケーションのログ確認

$ heroku logs --tail

別の開発環境で開発を続行するとき

移行先でHeroku Toolbeltをインストール後に

$ heroku git:clone --app [App Nane]

あとremote originへのgithubリポジトリURL登録も。

ヘルプコマンド

$ heroku help
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?