-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
56 lines (46 loc) · 1.62 KB
/
Copy pathrender.yaml
File metadata and controls
56 lines (46 loc) · 1.62 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
# ==============================================================================
# Render Infrastructure-as-Code Blueprint
# Project: Chatbot-Engine-Gateway (FastAPI Multi-Agent Microservice)
# ==============================================================================
services:
# ----------------------------------------------------------------------------
# FastAPI AI Agent Gateway Web Service
# ----------------------------------------------------------------------------
- type: web
name: ai-agent-gateway
runtime: docker
dockerfilePath: ./Dockerfile
plan: free
region: oregon
branch: main
autoDeploy: true
healthCheckPath: /health
# Runtime Environment Variables Configuration
envVars:
# Google Gemini AI Studio API Key (Provide securely in Render Dashboard)
- key: GEMINI_API_KEY
sync: false
# Shared secret for inter-service authentication with Django Backend
- key: INTERNAL_API_SECRET
generateValue: true
# Backend Django Monolith URL
- key: DJANGO_BACKEND_URL
sync: false
# Redis Cache & Agent Memory URI
- key: REDIS_URL
sync: false
# Application Runtime Environment
- key: ENVIRONMENT
value: production
# Debug Mode Flag
- key: DEBUG
value: "false"
# Allowed CORS Origins (Comma-separated or JSON list)
- key: BACKEND_CORS_ORIGINS
sync: false
# Default Google Gemini Model
- key: DEFAULT_MODEL
value: gemini-3.7-flash
# Force unbuffered standard I/O for immediate logging
- key: PYTHONUNBUFFERED
value: "1"