File size: 582 Bytes
c19c7bf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
services:
  - type: web
    name: clientsphere-rag-backend
    env: python
    buildCommand: pip install -r requirements.txt
    startCommand: uvicorn app.main:app --host 0.0.0.0 --port $PORT
    envVars:
      - key: GEMINI_API_KEY
        sync: false  # Set in Render dashboard
      - key: ENV
        value: prod
      - key: LLM_PROVIDER
        value: gemini
      - key: ALLOWED_ORIGINS
        sync: false  # Set in Render dashboard
      - key: JWT_SECRET
        sync: false  # Set in Render dashboard (same as Node.js backend)
      - key: DEBUG
        value: "false"