-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
47 lines (42 loc) · 1.12 KB
/
Copy pathrender.yaml
File metadata and controls
47 lines (42 loc) · 1.12 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: backend
runtime: docker
plan: free
dockerfilePath: ./backend/Dockerfile.combined
dockerContext: ./backend
envVars:
# Database
- key: DATABASE_URL
sync: false
# JWT Secret (shared across services)
- key: JWT_SECRET
sync: false
# GitHub OAuth
- key: GITHUB_CLIENT_ID
sync: false
- key: GITHUB_CLIENT_SECRET
sync: false
- key: GITHUB_TOKEN
sync: false
# AI Service
- key: GEMINI_API_KEY
sync: false
- key: GROQ_API_KEY
sync: false
- key: LLM_PROVIDER
value: gemini
- key: LLM_MODEL
value: gemini-2.0-flash-exp
# Frontend URL
- key: FRONTEND_URL
sync: false
# Service URLs (localhost since all in one container)
- key: GITHUB_SERVICE_URL
value: http://localhost:8081
- key: AI_SERVICE_URL
value: http://localhost:8082
- key: CORE_SERVICE_URL
value: http://localhost:8083
- key: NOTIFICATION_SERVICE_URL
value: http://localhost:8084