-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
123 lines (117 loc) · 3.27 KB
/
Copy pathrender.yaml
File metadata and controls
123 lines (117 loc) · 3.27 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# Render Blueprint for Northwoods deployment
# See: https://render.com/docs/blueprint-spec
#
# Images built by GitHub Actions (.github/workflows/deploy.yml) and pushed
# to GitHub Container Registry (ghcr.io). Render pulls on deploy hook trigger.
# No public Docker Hub images.
databases:
- name: northwoods-db
plan: basic_256mb
region: oregon
postgresMajorVersion: '18'
databaseName: northwoods
user: northwoods
services:
- type: web
name: northwoods-api
plan: starter
region: oregon
runtime: image
image:
url: ghcr.io/open-horizon-labs/northwoods-api:latest
healthCheckPath: /healthz
envVars:
- key: ASPNETCORE_URLS
value: http://+:10000
- key: ConnectionStrings__Default
fromDatabase:
name: northwoods-db
property: connectionString
- key: Database__UseAppUserRole
value: "false"
- key: Minio__Endpoint
fromService:
type: web
name: northwoods-minio
property: hostport
- key: Minio__AccessKey
value: northwoods
- key: Minio__SecretKey
sync: false
- key: Minio__BucketName
value: intakes
- key: Auth__Jwt__SigningKey
generateValue: true
- key: Auth__Jwt__Issuer
value: northwoods-api
- key: Auth__Jwt__Audience
value: northwoods-web
- key: Auth__ReviewerCanUpload
value: "false"
- key: OPENAI_API_KEY
sync: false
- key: Extraction__UseOpenAiVision
value: "true"
- key: Extraction__UsePaddleOcr
value: "false"
- key: Cors__AllowedOrigins__0
value: https://northwoods.muness.com
- key: Cors__AllowedOrigins__1
value: https://northwoods-web.onrender.com
- type: worker
name: northwoods-worker
plan: starter
region: oregon
runtime: image
image:
url: ghcr.io/open-horizon-labs/northwoods-worker:latest
envVars:
- key: ConnectionStrings__Default
fromDatabase:
name: northwoods-db
property: connectionString
- key: Minio__Endpoint
fromService:
type: web
name: northwoods-minio
property: hostport
- key: Minio__AccessKey
value: northwoods
- key: Minio__SecretKey
sync: false
- key: Minio__BucketName
value: intakes
- key: OPENAI_API_KEY
sync: false
- key: Extraction__UseOpenAiVision
value: "true"
- key: Extraction__UsePaddleOcr
value: "false"
- key: Extraction__OpenAi__VisionModel
value: gpt-5.4-nano
- type: web
name: northwoods-minio
plan: starter
region: oregon
runtime: image
image:
url: docker.io/minio/minio:latest
dockerCommand: minio server /data --address :10000 --console-address :10001
envVars:
- key: MINIO_ROOT_USER
value: northwoods
- key: MINIO_ROOT_PASSWORD
sync: false
- type: web
name: northwoods-web
plan: starter
region: oregon
runtime: image
image:
url: ghcr.io/open-horizon-labs/northwoods-web:latest
# Custom domain: northwoods.muness.com (CNAME via Cloudflare)
envVars:
- key: PORT
value: "10000"
- key: API_URL
value: https://northwoods-api.onrender.com