-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
62 lines (61 loc) · 1.73 KB
/
Copy pathrender.yaml
File metadata and controls
62 lines (61 loc) · 1.73 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
52
53
54
55
56
57
58
59
60
61
62
databases:
- name: querymind-postgres
plan: free
databaseName: querymind
user: querymind
services:
- type: web
name: querymind-api
plan: free
runtime: python
rootDir: apps/api
buildCommand: pip install -r requirements.txt
startCommand: alembic upgrade head && uvicorn app.main:app --host 0.0.0.0 --port $PORT
healthCheckPath: /health
autoDeployTrigger: commit
buildFilter:
paths: [apps/api/**, render.yaml, docker-compose.yml, .env.example]
envVars:
- key: PYTHON_VERSION
value: 3.12.10
- key: DATABASE_URL
fromDatabase: { name: querymind-postgres, property: connectionString }
- key: APP_ENV
value: production
- key: ENABLE_EXTERNAL_CONNECTIONS
value: "false"
- key: LLM_PROVIDER
value: groq
- key: LLM_BASE_URL
value: https://api.groq.com/openai/v1
- key: LLM_API_KEY
sync: false
- key: LLM_MODEL
value: openai/gpt-oss-120b
- key: LLM_FALLBACK_MODEL
value: llama-3.3-70b-versatile
- key: EMBEDDING_PROVIDER
value: local
- key: EMBEDDING_MODEL
value: sentence-transformers/all-MiniLM-L6-v2
- key: ENABLE_SCHEMA_RAG
value: "false"
- key: ENABLE_GOLDEN_RECORDS
value: "false"
- key: CORS_ALLOW_ORIGINS
sync: false
- type: web
name: querymind-web
plan: free
runtime: node
rootDir: apps/web
buildCommand: npm ci && npm run build
startCommand: npm run start -- -p $PORT
autoDeployTrigger: commit
buildFilter:
paths: [apps/web/**, render.yaml, .env.example]
envVars:
- key: NODE_VERSION
value: 20.19.5
- key: NEXT_PUBLIC_API_URL
sync: false