You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
524 B
22 lines
524 B
2 years ago
|
---
|
||
|
defaults: &defaults
|
||
|
buildpacks:
|
||
|
- https://github.com/cloudfoundry/ruby-buildpack.git#v1.8.59
|
||
|
processes:
|
||
|
- type: web
|
||
|
command: bundle exec rake cf:on_first_instance db:migrate db:seed && bin/rails server
|
||
|
instances: 1
|
||
|
memory: 1G
|
||
|
- type: worker
|
||
|
command: bundle exec sidekiq
|
||
|
health-check-type: process
|
||
|
instances: 1
|
||
|
health-check-type: http
|
||
|
health-check-http-endpoint: /health
|
||
|
|
||
|
applications:
|
||
|
- name: dluhc-core-review
|
||
|
<<: *defaults
|
||
|
env:
|
||
|
RAILS_ENV: review
|