LoginSignup
0
0

More than 1 year has passed since last update.

Herokuのコマンド一覧

Posted at

Herokuのコマンド一覧

Heroku CLI コマンド 一覧

触れたことのあるコード 2022.02.17
#アプリを一覧表示
$ heroku apps

#新しいアプリケーションを作成
$ heroku create

# Herokuのコマンド一覧を表示
$ heroku help

#ログイン
$ heroku login
  (--interactive  herokuコマンドでブラウザを開かないようにできる)

#最新のログ出力を表示
$ heroku logs

#アプリケーションの名前を変更
$ heroku rename アプリ名

#バージョン確認
$ heroku --version

#データベースの更新をHeroku側で実行
$ heroku run rails db:migrate

#メンテナンスモード
heroku maintenance:on
herolu maintenance:off

参考

0
0
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
0
0