-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (19 loc) · 910 Bytes
/
Copy path.env.example
File metadata and controls
24 lines (19 loc) · 910 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
# DecisionMatrix MCP — environment / binding reference.
#
# The engine is stateless: to run FREE / PRIVATE you need NONE of these — the
# server fails open (free tier, quota disabled). The values below drive the
# hosted paid tier and live in wrangler.toml [vars] + Pages secrets, not a .env.
# Public base URL (used in checkout/success/portal redirects + upsell links).
DECISIONMATRIX_BASE_URL=https://decisionmatrix-mcp.pages.dev
# --- Plan quotas (calls/day) ---
FREE_DAILY=15
STARTER_DAILY=5000
PRO_DAILY=50000
# --- Stripe price IDs (subscription) — set in wrangler.toml [vars] ---
PRICE_STARTER=price_xxx
PRICE_PRO=price_xxx
# --- Stripe secrets — set via `wrangler pages secret put`, NEVER commit ---
# STRIPE_SECRET_KEY=sk_live_xxx
# STRIPE_WEBHOOK_SECRET=whsec_xxx
# --- KV binding (wrangler.toml) ---
# [[kv_namespaces]] binding = "DECISIONMATRIX_KV" — stores API keys + daily usage.