-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.yaml
More file actions
73 lines (71 loc) · 2.03 KB
/
render.yaml
File metadata and controls
73 lines (71 loc) · 2.03 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# ─── TradeIQ - Render Blueprint (One-Click Deploy) ────────
# Deploy: Connect GitHub repo → Render auto-detects this file
# Docs: https://docs.render.com/blueprint-spec
# ───────────────────────────────────────────────────────────
services:
# ── Backend: Django + Daphne (ASGI) ──
- type: web
name: tradeiq-backend
runtime: docker
plan: free
dockerfilePath: ./backend/Dockerfile
dockerContext: ./backend
healthCheckPath: /healthz/
envVars:
- key: DATABASE_URL
sync: false
- key: DJANGO_SECRET_KEY
generateValue: true
- key: DEBUG
value: "False"
- key: ALLOWED_HOSTS
value: "*"
- key: CORS_ALLOWED_ORIGINS
sync: false
- key: SUPABASE_URL
sync: false
- key: SUPABASE_JWT_SECRET
sync: false
- key: DEEPSEEK_API_KEY
sync: false
- key: OPENROUTER_API_KEY
sync: false
- key: DERIV_APP_ID
sync: false
- key: DERIV_TOKEN
sync: false
- key: DERIV_ENCRYPTION_KEY
sync: false
- key: NEWS_API_KEY
sync: false
- key: FINNHUB_API_KEY
sync: false
- key: BLUESKY_HANDLE
sync: false
- key: BLUESKY_APP_PASSWORD
sync: false
- key: REDIS_URL
sync: false
# Real-time market monitor daemon
- key: RUN_MONITOR
value: "true"
# ── Frontend: Next.js ──
- type: web
name: tradeiq-frontend
runtime: docker
plan: free
dockerfilePath: ./frontend/Dockerfile
dockerContext: ./frontend
envVars:
- key: NEXT_PUBLIC_API_URL
sync: false
- key: NEXT_PUBLIC_WS_URL
sync: false
- key: NEXT_PUBLIC_SUPABASE_URL
sync: false
- key: NEXT_PUBLIC_SUPABASE_ANON_KEY
sync: false
- key: NEXT_PUBLIC_AUTH_CALLBACK_URL
sync: false
- key: NEXT_OUTPUT
value: standalone