-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
23 lines (23 loc) · 1.28 KB
/
Copy pathrender.yaml
File metadata and controls
23 lines (23 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Render Blueprint — one web service serving both the API and the frontend
# (FastAPI returns frontend/index.html at "/"), so a recruiter opens a single
# URL. Deploy with: Render Dashboard → New → Blueprint → pick this repo.
services:
- type: web
name: capscribe
runtime: docker
dockerfilePath: ./Dockerfile
plan: free # free deploys with no billing setup (starter is a PAID
# tier — a starter change here stalls the Blueprint sync
# until billing is configured). To go always-on later:
# add billing in the Render dashboard, then set "starter".
region: singapore # closest to India / Indian filings
healthCheckPath: /health
autoDeploy: true # redeploys on every push to the default branch
envVars:
# Cold-open on the real Ola DRHP extraction (page-cited), not the sample.
- key: EVENTS_PATH
value: fixtures/ola_drhp_extracted.json
# ANTHROPIC_API_KEY is intentionally NOT set here: the public demo runs
# the free, extractive search / ask / report / verify. Add it in the
# Render dashboard ONLY if you want the optional llm modes (real API cost,
# and a public link can be hit by anyone — leave it unset for a safe demo).