0
0

More than 3 years have passed since last update.

herokuでアプリを修正して更新するとき

Last updated at Posted at 2021-07-20

herokuでアプリを公開しているものを更新するとき

まずherokuは「gitと連携して、gitに保存した内容をデプロイ」している。
なので、変更したいときは次のコマンドを使う

terminal
% git add -A
% git commit -m "Update application"
% git push heroku master

またテーブル追加や内容変更などをした場合は次のコマンドも実行する

terminal
% heroku run rails db:migrate
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