-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
42 lines (41 loc) · 1.02 KB
/
render.yaml
File metadata and controls
42 lines (41 loc) · 1.02 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
services:
- type: web
name: ai-resume-analyzer-api
runtime: docker
plan: free
dockerContext: ./backend
dockerfilePath: ./backend/Dockerfile
healthCheckPath: /health
envVars:
- key: ENVIRONMENT
value: production
- key: LOG_LEVEL
value: INFO
- key: GEMINI_MODEL
value: gemini-2.5-flash
- key: GEMINI_TIMEOUT_SECONDS
value: "30"
- key: GEMINI_RETRY_ATTEMPTS
value: "3"
- key: GEMINI_RETRY_BASE_DELAY_SECONDS
value: "1"
- key: ENABLE_AI_FALLBACK
value: "false"
- key: CORS_ORIGINS
sync: false
- key: GEMINI_API_KEY
sync: false
- type: web
name: ai-resume-analyzer-frontend
env: static
plan: free
rootDir: frontend
buildCommand: npm install && npm run build
staticPublishPath: dist
routes:
- type: rewrite
source: /**
destination: /index.html
envVars:
- key: VITE_API_BASE_URL
value: https://llm-ops-workshop-api.onrender.com