-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
36 lines (35 loc) · 989 Bytes
/
Copy pathrender.yaml
File metadata and controls
36 lines (35 loc) · 989 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
services:
- type: web
name: visualang-frontend
runtime: static
rootDir: frontend
buildCommand: npm ci && npm run build
staticPublishPath: dist
envVars:
- key: VITE_API_URL
sync: false
- type: web
name: visualang-backend
runtime: python
plan: starter
rootDir: backend
buildCommand: curl -fsSL https://deno.land/install.sh | sh && pip install -r requirements.txt
startCommand: export PATH="$HOME/.deno/bin:$PATH" && uvicorn main:app --host 0.0.0.0 --port $PORT
healthCheckPath: /health
envVars:
- key: ANTHROPIC_API_KEY
sync: false
- key: OPENAI_API_KEY
sync: false
- key: NUNCHAKU_API_KEY
sync: false
- key: CORS_ALLOWED_ORIGINS
sync: false
- key: YOUTUBE_PROXY_ENABLED
sync: false
- key: YOUTUBE_PROXY_HTTP_URL
sync: false
- key: YOUTUBE_PROXY_HTTPS_URL
sync: false
- key: YT_DLP_DENO_PATH
sync: false