前提・実現したいこと
プログラミング始めたばかりの初心者です。
Ruby on Railsで投稿アプリを作っていますが本番環境でApplication errorが発生して行き詰まっています。
どなたかご回答頂けると助かります。
発生している問題・エラーメッセージ
Terminal
12022-01-03T15:13:57.597091+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=xxx.herokuapp.com request_id=467cf990-7a39-4a99-a9bf-391adde25e22 fwd="61.46.191.180" dyno= connect= service= status=503 bytes= protocol=https 22022-01-03T15:13:58.155466+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=xxx.herokuapp.com request_id=b55661be-8c0e-4649-bd66-286944c4bab1 fwd="61.46.191.180" dyno= connect= service= status=503 bytes= protocol=https
試したこと
heroku logs --tail でログの確認(上記と同じ)
Terminal
12022-01-03T15:13:57.597091+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=xxx.herokuapp.com request_id=467cf990-7a39-4a99-a9bf-391adde25e22 fwd="61.46.191.180" dyno= connect= service= status=503 bytes= protocol=https 22022-01-03T15:13:58.155466+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=xxx.herokuapp.com request_id=b55661be-8c0e-4649-bd66-286944c4bab1 fwd="61.46.191.180" dyno= connect= service= status=503 bytes= protocol=https
Papertrailをアドオンして詳細ログの確認
Papertrail
1Jan 03 07:26:10 xxx heroku/web.1 State changed from crashed to starting 2Jan 03 07:26:30 xxx heroku/web.1 Starting process with command `npm start` 3Jan 03 07:26:31 xxx heroku/web.1 Process exited with status 1 4Jan 03 07:26:31 xxx app/web.1 npm ERR! missing script: start 5Jan 03 07:26:31 xxx app/web.1 npm ERR! A complete log of this run can be found in: 6Jan 03 07:26:31 xxx app/web.1 npm ERR! /app/.npm/_logs/2022-01-03T15_26_31_568Z-debug.log 7Jan 03 07:26:31 xxx heroku/web.1 State changed from starting to crashed 8Jan 03 07:41:07 xxx heroku/router at=error code=H10 desc="App crashed" method=GET path="/" host=xxx.herokuapp.com request_id=850daf14-d914-4360-886e-3e190db01cda fwd="61.46.191.180" dyno= connect= service= status=503 bytes= protocol=https 9Jan 03 07:41:08 xxx heroku/router at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=xxx.herokuapp.com request_id=dbc5018d-5f74-44b0-b3b9-88a1a1951b77 fwd="61.46.191.180" dyno= connect= service= status=503 bytes= protocol=https
コンソールを起動するとエラー文が表示されるという記事があったので試したのですが、思ったような表示になりませんでした。
Terminal
1% heroku console 2Running console on ⬢ xxx... up, run.4393 (Free) 3bash: console: command not found 4 5% heroku run rails c 6Running rails c on ⬢ xxx... up, run.4543 (Free) 7Loading production environment (Rails 6.0.3.7) 8[1] pry(main)> 9
以上になります。よろしくお願いします。
あなたの回答
tips
プレビュー