0
0

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 3 years have passed since last update.

ローカル環境からherokuにデプロイしたRailsアプリを更新したいとき

Last updated at Posted at 2020-09-06

やりたいこと

ローカル環境からherokuにデプロイしたRailsアプリの内容を更新する。

具体的には、変更したデータベースを反映したい。

(忘備録に残しておきます)

更新方法

ターミナルにて、更新したいアプリがあるディレクトリに移動し、
$git add -A
$git commit -m "Update application"
$git push heroku master

からの、

$heroku run rails db:migrate

これでいけました。

git push heroku master時にエラーが発生する場合

gemfileをいじったとき、最後にbundle installをし忘れている可能性があります。

ということで、再びターミナルにて

$budnle install

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

$heroku run rails db:migrate

これでherokuにデプロイしていたアプリの内容を更新できました!

参考にした記事

以下の記事が参考になりました。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?