-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrender.yaml
More file actions
39 lines (37 loc) · 1.05 KB
/
Copy pathrender.yaml
File metadata and controls
39 lines (37 loc) · 1.05 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
# Render Blueprint - Infrastructure as Code
# https://render.com/docs/blueprint-spec
services:
- type: web
name: libredb-studio
runtime: docker
# Use Dockerfile for building
dockerfilePath: ./Dockerfile
# Health check endpoint
healthCheckPath: /api/db/health
# Auto-deploy on push to main
autoDeploy: true
# Environment variables (set in Render Dashboard for secrets)
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: 3000
# Authentication - Set these in Render Dashboard
- key: ADMIN_PASSWORD
sync: false # Must be set manually in dashboard
- key: USER_PASSWORD
sync: false
- key: JWT_SECRET
sync: false
# AI Configuration (Optional) - Set in Dashboard
- key: LLM_PROVIDER
value: gemini
- key: LLM_API_KEY
sync: false
- key: LLM_MODEL
value: gemini-2.0-flash
# Disk for persistent storage (optional)
# disk:
# name: libredb-data
# mountPath: /app/data
# sizeGB: 1