-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
60 lines (59 loc) · 1.54 KB
/
Copy pathrender.yaml
File metadata and controls
60 lines (59 loc) · 1.54 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
services:
- type: web
name: cognisect-api
runtime: docker
plan: free
region: ohio
dockerfilePath: ./backend/Dockerfile
dockerContext: .
dockerCommand: "/bin/sh -c ./scripts/migrate.sh && exec ./scripts/run-backend.sh"
healthCheckPath: /ready
autoDeployTrigger: checksPass
envVars:
- key: APP_ENV
value: production
- key: DATABASE_URL
fromDatabase:
name: cognisect-postgres
property: connectionString
- key: OPENAI_API_KEY
sync: false
- key: OWNER_SECRET_PEPPER
generateValue: true
- key: LEARNER_TOKEN_PEPPER
generateValue: true
- key: ABUSE_KEY_PEPPER
generateValue: true
- key: PROXY_SIGNING_SECRET
sync: false
- key: PUBLIC_APP_URL
sync: false
- key: RETENTION_DAYS
value: "30"
- key: RETENTION_INTERVAL_SECONDS
value: "21600"
- key: CASE_CREATION_LIMIT_PER_HOUR
value: "60"
- key: ANALYSIS_LIMIT_PER_HOUR
value: "30"
- key: MAX_MODEL_CALLS_PER_CASE
value: "3"
- key: MAX_MODEL_COST_USD
value: "1.00"
- key: MODEL_TIMEOUT_SECONDS
value: "30"
- key: MODEL_LUNA
value: gpt-5.6-luna
- key: MODEL_TERRA
value: gpt-5.6-terra
- key: MODEL_SOL
value: gpt-5.6-sol
- key: LANGGRAPH_STRICT_MSGPACK
value: "true"
databases:
- name: cognisect-postgres
plan: free
region: ohio
databaseName: cognisect
user: cognisect
ipAllowList: []