forked from determined-001/Quay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
39 lines (38 loc) · 1.39 KB
/
Copy pathrender.yaml
File metadata and controls
39 lines (38 loc) · 1.39 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
# Render Blueprint — deploys apps/api (Hono API + ledger watcher + cash-out
# poller) as ONE always-on Docker web service. Starter plan is mandatory: the
# free tier spins down after 15 min idle, which stops the watcher loop.
# The web app deploys separately to Vercel; the database is Turso (external).
#
# Secrets (sync: false) to set in the Render dashboard on first deploy:
# DATABASE_URL libsql://<db-name>-<org>.turso.io
# DATABASE_AUTH_TOKEN from `turso db tokens create <db>` or the Turso dashboard
# DEFAULT_SELLER_SECRET S... secret for DEFAULT_SELLER_WALLET (SEP-10 signing)
services:
- type: web
name: quay-api
runtime: docker
plan: starter
dockerfilePath: ./apps/api/Dockerfile
dockerContext: .
healthCheckPath: /health
envVars:
- key: API_PORT
value: "8787"
- key: STELLAR_NETWORK
value: testnet
- key: USDC_ISSUER_TESTNET
value: GBBD47IF6LWK7P7MDEVSCWR7DPUWV3NY3DTQEVFL4NAT4AQH3ZLLFLA5
- key: WATCH_POLL_MS
value: "6000"
- key: OFFRAMP
value: testanchor
- key: CORS_ORIGINS
value: https://quay-web.vercel.app
- key: DEFAULT_SELLER_WALLET
value: GBMDH3QWSD74ILWD2ZVFOAOCMVRNPNGAHN557WA4KABLI5IFN2XYLMGY
- key: DATABASE_URL
sync: false
- key: DATABASE_AUTH_TOKEN
sync: false
- key: DEFAULT_SELLER_SECRET
sync: false