Skip to content

Instantly share code, notes, and snippets.

@ExpHP
ExpHP / 0_announcement.md
Last active August 17, 2023 05:22
anm parser info

Announcement regarding this gist

Much of the information here is old and outdated!

Visit my new site at exphp.github.io/thpages.

@co-sche
co-sche / aws-eb-play-scala.md
Last active March 31, 2023 05:24
AWS Elastic Beanstalk (Java8)に最小手順でPlay Framework (Scala)のアプリをデプロイする

sbt dist

これだけで${PROJECT_ROOT}/target/universal/に起動スクリプトなどを含んだパッケージ(zip)が生成される。

内部でsbt-native-packagerが呼ばれる。

これは一応プラグインだけど、今のPlayではビルトインなので、addSbtPluginする必要はない。

けど、まだEBでそのままデプロイできるパッケージではない。

Procfile

// () => {
// hoge;
// }
//
// Of cource, [[Construct]] is not considered.
x = (function (bound, target) {
return function () {
return target.apply(bound, arguments);
};