-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathrender.yaml
More file actions
47 lines (47 loc) · 1.22 KB
/
render.yaml
File metadata and controls
47 lines (47 loc) · 1.22 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
services:
- type: web
name: deepeval-api
runtime: python3
rootDir: .
buildCommand: pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt
startCommand: uvicorn app.main:app --host 0.0.0.0 --port $PORT
plan: starter
branch: main
healthCheckPath: /health
envVars:
- key: SECRET_KEY
generateValue: true
- key: ADMIN_USERNAME
value: admin
- key: ADMIN_PASSWORD
generateValue: true
- key: API_KEYS
generateValue: true
- key: DEBUG
value: false
- key: LOG_LEVEL
value: INFO
- key: HOST
value: 0.0.0.0
- key: PORT
value: 10000
- key: ACCESS_TOKEN_EXPIRE_MINUTES
value: 30
- key: DEFAULT_MAX_CONCURRENT
value: 5
- key: DEFAULT_TIMEOUT
value: 900
- key: MAX_FILE_SIZE
value: 10485760
# LLM API Keys - set these in Render dashboard
- key: OPENAI_API_KEY
sync: false
- key: ANTHROPIC_API_KEY
sync: false
- key: GOOGLE_API_KEY
sync: false
- key: DEEPEVAL_API_KEY
sync: false
# Simple in-memory storage (no Redis needed)
- key: USE_REDIS
value: false