-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
48 lines (45 loc) · 1018 Bytes
/
Copy pathrender.yaml
File metadata and controls
48 lines (45 loc) · 1018 Bytes
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
databases:
- name: postgres
region: ohio
ipAllowList: []
services:
- type: web
name: rails
plan: free
env: ruby
region: ohio
buildCommand: "./bin/render-build.sh"
startCommand: bundle exec rails s
envVars:
- key: RAILS_MASTER_KEY
sync: false
- key: DATABASE_URL
fromDatabase:
name: postgres
property: connectionString
- key: REDIS_URL
fromService:
type: redis
name: redis
property: connectionString
- type: redis
name: redis
plan: free
region: ohio
ipAllowList: []
maxmemoryPolicy: noeviction
- type: worker
name: sidekiq-worker
env: ruby
plan: free
region: ohio
buildCommand: bundle install
startCommand: bundle exec sidekiq -C config/sidekiq.yml
envVars:
- key: REDIS_URL
fromService:
type: redis
name: redis
property: connectionString
- key: RAILS_MASTER_KEY
sync: false