-
Notifications
You must be signed in to change notification settings - Fork 5
/
render.yaml
77 lines (72 loc) · 1.9 KB
/
render.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
services:
- type: redis
name: sidekiq-redis
plan: free
region: oregon
maxmemoryPolicy: noeviction
ipAllowList: [ ] # only allow internal connections
- type: worker
name: sidekiq-worker
runtime: ruby
plan: starter
region: oregon
buildCommand: bundle install
startCommand: bundle exec sidekiq -t 25 -C config/sidekiq.yml
envVars:
- key: REDIS_URL
fromService:
type: redis
name: sidekiq-redis
property: connectionString
- key: DATABASE_URL
fromDatabase:
name: obaco-postgresql
property: connectionString
- key: RAILS_MASTER_KEY
sync: false
- type: web
name: rails-web
runtime: ruby
region: oregon
plan: standard
buildCommand: "./bin/render-build.sh"
preDeployCommand: "bundle exec rails db:migrate"
startCommand: bundle exec puma -t 5:5 -p ${PORT:-3000} -e ${RACK_ENV:-development}
envVars:
- key: REDIS_URL
fromService:
type: redis
name: sidekiq-redis
property: connectionString
- key: DATABASE_URL
fromDatabase:
name: obaco-postgresql
property: connectionString
- key: RAILS_MASTER_KEY
sync: false
- key: WEB_CONCURRENCY
value: 2
- type: cron
runtime: ruby
name: alarm-checker
schedule: "*/1 * * * *"
buildCommand: "./bin/render-build.sh"
startCommand: "bundle exec rails obaco:queue_alarms"
branch: main
plan: starter
envVars:
- key: REDIS_URL
fromService:
type: redis
name: sidekiq-redis
property: connectionString
- key: DATABASE_URL
fromDatabase:
name: obaco-postgresql
property: connectionString
- key: RAILS_MASTER_KEY
sync: false
databases:
- name: obaco-postgresql
databaseName: onebusaway_production
plan: basic-256mb