TL;DR
- GAE/Rubyを動かすためのapp.yaml を生成する
command
-> % gcloud preview app gen-config
This looks like a Ruby application. Please confirm the command to run
as the entrypoint: [bundle exec rackup -p $PORT]:
Writing [app.yaml] to [/Users/TakumiKanzaki/Sites/gae.sample.com].
All config files already exist, not generating anything.
- current directoryのソースを適当に判断してくれて生成してくれる
- entrypoint のところにapp を起動するコマンドを書けば基本的にはok
app.yaml
-> % cat app.yaml
api_version: 1
entrypoint: bundle exec rackup -p $PORT
runtime: ruby
vm: true
- 最低限の設定だけ生成されるので、他に必要な設定は自分で書く