[Paas]
Heroku
便利なPaaS
Java開発
- HerokuのCLIデプロイ機能
$ heroku plugins:install heroku-cli-deploy
JRubyのデプロイ
- ビルドパックとして以下のものを使用する
- 必要なプロパティファイル
- system.properties, Gemfile にエンジンとそのバージョン, Procfile
$ cat system.properties java.runtime.version=1.8 $ head Gemfile source 'https://rubygems.org' ruby '2.3.3', engine: 'jruby', engine_version: '9.1.13.0' $ cat Procfile web: bin/puma -p $PORT -e $RACK_ENV