-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
48 lines (47 loc) · 1.2 KB
/
Copy pathrender.yaml
File metadata and controls
48 lines (47 loc) · 1.2 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
services:
- type: web
name: lexagent-backend
env: docker
rootDir: backend
plan: free
envVars:
- key: LLM_MODEL
value: google/gemini-2.0-flash-001
- key: FAST_MODEL
value: openai/gpt-oss-20b:free
- key: LLM_BASE_URL
value: https://openrouter.ai/api/v1
- key: LLM_API_KEY
sync: false
- key: EMBEDDING_MODEL
value: openai/text-embedding-3-small
- key: EMBEDDING_BASE_URL
value: https://models.github.ai/inference
- key: EMBEDDING_API_KEY
sync: false
- key: GITHUB_TOKEN
sync: false
- key: SUPABASE_URL
sync: false
- key: SUPABASE_KEY
sync: false
- key: SUPABASE_SERVICE_KEY
sync: false
- key: DATABASE_URL
value: sqlite+aiosqlite:///./lexagent.db
- key: APP_ENV
value: production
- key: CORS_ORIGINS
value: "*"
- type: web
name: lexagent-frontend
env: python
rootDir: frontend
plan: free
buildCommand: pip install -r requirements.txt
startCommand: gunicorn app:app --bind 0.0.0.0:$PORT
envVars:
- key: API_BASE_URL
sync: false
- key: SECRET_KEY
sync: false