-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
51 lines (49 loc) · 1.59 KB
/
render.yaml
File metadata and controls
51 lines (49 loc) · 1.59 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
projects:
- name: aeo-analytics
environments:
- name: production
services:
- name: aeo-analytics-web
type: web
runtime: node
rootDir: web
buildCommand: cd .. && pnpm install && pnpm --filter web build && pnpm --filter web db:migrate
startCommand: pnpm start
envVars:
- key: DATABASE_URL
fromDatabase:
name: aeo-analytics-db
property: connectionString
- key: RENDER_API_KEY
sync: false
- key: RENDER_WORKFLOW_SLUG
sync: false
- key: OPENAI_API_KEY
sync: false
- key: ANTHROPIC_API_KEY
sync: false
- key: GOOGLE_API_KEY
sync: false
- key: CRON_SECRET
generateValue: true
- name: aeo-analytics-cron
type: cron
runtime: node
rootDir: cron
buildCommand: echo "No build needed"
startCommand: node index.mjs
schedule: "0 0 * * *"
envVars:
- key: RENDER_API_KEY
fromService:
type: web
name: aeo-analytics-web
envVarKey: RENDER_API_KEY
- key: RENDER_WORKFLOW_SLUG
fromService:
type: web
name: aeo-analytics-web
envVarKey: RENDER_WORKFLOW_SLUG
databases:
- name: aeo-analytics-db
plan: basic-1gb