不具合の症状: Herokuにて”Application Error”の状態が解消されない。
自分のプロジェクト内のルートディレクトリに「Procfile」を作成。 以下のとおりに記入する( {retailos}部分は自分のプロジェクト名(アプリ名)とする )。
web: target/universal/stage/bin/{retailos} -Dhttp.port=${PORT} -DapplyEvolutions.default=true -Ddb.default.driver=org.postgresql.Driver -Ddb.default.url=${DATABASE_URL}
・参考ページ https://www.playframework.com/documentation/2.3.x/ProductionHeroku
その後、 http://stackoverflow.com/questions/16369601/unable-to-launch-heroku-app-process-exited-with-status-255 のページ下部、try this以下の部分にしたがって、1.sqlを削除してから再度git push heroku masterを試してみると、Applicaton Errorの状態が解消される。
他の要因が絡んでいる可能性も考えられますが、今回の私の状況では、上記の方法でHerokuへのdeployを完了させることができました。
この際、
heroku logs
でHerokuのログを確認すると、現状がどうなっているのか確認でき、対処の糸口が見えるかもしれません。