-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
45 lines (34 loc) · 1.16 KB
/
render.yaml
File metadata and controls
45 lines (34 loc) · 1.16 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
services:
# Watchtower API Backend
- type: web
name: watchtower-api
env: docker
plan: starter # Change to 'free' for free tier, or 'starter' for paid
region: oregon # Change to your preferred region
dockerfilePath: ./Dockerfile
dockerContext: .
# Environment variables
envVars:
- key: PYTHON_VERSION
value: 3.12.3
- key: SUPABASE_URL
sync: false # Set manually in Render dashboard or use sync: true with value
- key: SUPABASE_KEY
sync: false # Set manually in Render dashboard (should be secret)
- key: GOOGLE_PAGESPEED_API_KEY
sync: false # Set manually in Render dashboard (should be secret)
- key: API_V1_STR
value: /api/v1
- key: MAX_CONCURRENT_SCANS
value: 1
- key: PORT
value: 8000
# Health check endpoint
healthCheckPath: /health
# Auto-deploy settings
autoDeploy: true # Auto-deploy on git push
# Build command (optional, Render will use Dockerfile by default)
# buildCommand: echo "Building with Dockerfile"
# Custom domain (optional)
# customDomains:
# - watchtower-api.yourdomain.com