A barebones Kotlin app, which can easily be deployed to Heroku.
HerokuでKotlin Webを動作する備忘録です
ソースは以下に保存しています。
https://github.com/sugasaki/start-kotlin-heroku
Spring Initializr
まずは、プロジェクトの雛形をSpring Initializrから作成します。

当時とはUIが変わっていますが、以下を参考に
Kotlin + Spring Boot でHello! World! - Qiita
Procfile
Procfileファイルをルートに作成
web: java -Dserver.port=$PORT $JAVA_OPTS -jar build/libs/demo-0.0.1-SNAPSHOT.jar
or
web: java -Dserver.port=$PORT $JAVA_OPTS -jar build/libs/*.jar
javaを11に変更
Spring InitializrでJava11を選択したので、HerokuのJavamo11に変更する
Javaバージョンの指定するには、system.properties
を追加する必要がある。
アクティベーションHeroku の Java サポート | Heroku Dev Center
system.properties
system.properties
java.runtime.version=11
git
git init
git add .
git commit -m 'first commit'
heroku
heroku create
heroku apps
git push heroku master
run
heroku open /hello
heroku open /hello?name=jon
on local
http://localhost:8080/hello
on heroku
https://shielded-crag-62835.herokuapp.com/hello
trouble shout
heroku logs --tail
heroku run console
2021-01-23T13:29:09.479056+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/hello" host=sheltered-bastion-78347.herokuapp.com request_id=0b22f443-e210-4efa-bc09-4cd3ccf1023b fwd="121.113.51.72" dyno= connect= service= status=503 bytes= protocol=https
2021-01-23T13:29:10.404987+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=sheltered-bastion-78347.herokuapp.com request_id=1777303e-eab5-45e2-a21b-7745107c8172 fwd="121.113.51.72" dyno= connect= service= status=503 bytes= protocol=https
^
heroku local web
[WARN] ENOENT: no such file or directory, open 'Procfile'
[FAIL] No Procfile and no package.json file found in Current Directory - See run-foreman.js --help