Files
terminus/render.yaml
T
Brooke Kuhlmann 2de648aa34 Fixed Render configuration to use API URI for worker service
While the worker service doesn't use the `API_URI` directly, it does need to be set in order for Terminus to spin up.

Issue: 316
Milestone: patch
2026-05-24 13:27:33 -06:00

62 lines
1.4 KiB
YAML

databases:
- name: terminus
plan: free
databaseName: terminus
postgresMajorVersion: 18
user: terminus
ipAllowList: []
services:
- type: web
name: terminus-web
plan: free
autoDeployTrigger: commit
healthCheckPath: /up
runtime: docker
envVars:
- key: API_URI
fromService:
type: web
name: terminus-web
property: host
- key: APP_SETUP
value: true
- key: HANAMI_PORT
value: 10000
- key: DATABASE_URL
fromDatabase:
name: terminus
property: connectionString
- key: KEYVALUE_URL
fromService:
type: keyvalue
name: terminus-keyvalue
property: connectionString
- type: worker
name: terminus-worker
plan: starter
autoDeployTrigger: commit
runtime: docker
envVars:
- key: API_URI
fromService:
type: web
name: terminus-web
property: host
- key: DATABASE_URL
fromDatabase:
name: terminus
property: connectionString
- key: KEYVALUE_URL
fromService:
type: keyvalue
name: terminus-keyvalue
property: connectionString
dockerCommand: bundle exec sidekiq -r ./config/sidekiq.rb
- type: keyvalue
name: terminus-keyvalue
plan: free
ipAllowList: []