RailsのアプリをHeroku上にアップする作業の復習中に発生した問題(メモ程度で記載、後程、更新予定)
Herokuにデプロイしたが うまく動かない?!
こんなエラーが
前提
※1 heroku上に 'xxx-yyy-7140' というURIを持つアプリが存在しない
※2 アップしたいのは 'app-exist-2345' というURI
ここで、herokuにデータをpushしようとしたら、gitがないって怒られた。
$ git push heroku master
remote: ! No such app as xxx-yyy-7140.
fatal: repository 'https://git.heroku.com/xxx-yyy-7140.git/' not found
先人の対応
stackoverflowに、同様のケースがあった。
gitのリモートURLを変更する。
git remote set-url heroku https://git.heroku.com/boiling-falls-6570.git
そして 再度pushする。
git push heroku master
できた
(追記)プリコンパイルの必要性
assetsのプリコンパイルも必要。