-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
25 lines (24 loc) · 751 Bytes
/
render.yaml
File metadata and controls
25 lines (24 loc) · 751 Bytes
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
# Render Blueprint — https://render.com/docs/blueprint-spec
# Deploy: Dashboard > New > Blueprint > Connect this repo
services:
- type: web
name: marketmind-backend
runtime: docker
dockerfilePath: ./marketmind-backend/Dockerfile
dockerContext: ./marketmind-backend
plan: free
region: oregon
healthCheckPath: /health
envVars:
- key: GEMINI_API_KEY
sync: false # Set manually in Render dashboard
- key: FINNHUB_API_KEY
sync: false
- key: NEWSAPI_KEY
sync: false
- key: JWT_SECRET
generateValue: true # Auto-generate a secure random value
- key: CORS_ORIGINS
value: https://market-mind-dashboard.vercel.app
- key: PORT
value: "8080"