-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (17 loc) · 887 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (17 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# dcm-anon-vault environment variables
# Copy to .env and fill in real values; never commit .env.
# --- API keys (one or more customer_id:key pairs, comma-separated) ---
DCM_API_KEYS=acme:replace-with-rand-hex-32
# --- Database ---
# SQLite by default. Override with PostgreSQL for production:
# DCM_DB_URL=postgresql+psycopg://user:pass@host:5432/dcm_anon_vault
DCM_DB_URL=sqlite:///./vault.db
# --- Stripe ---
# Live or test API key; rename your previous STRIPE_TEST_KEY to STRIPE_API_KEY.
STRIPE_API_KEY=sk_test_REPLACE_ME
STRIPE_PRICE_ID=price_REPLACE_ME # monthly Pro plan
STRIPE_PRICE_ID_ANNUAL= # optional annual Pro plan
STRIPE_WEBHOOK_SECRET=whsec_REPLACE_ME # MANDATORY in production
STRIPE_TRIAL_DAYS=14 # 0 to disable
# --- OpenAPI docs (off by default — protects against CDN cookie leaks) ---
DCM_OPEN_DOCS=0