47 lines
2.1 KiB
Plaintext
47 lines
2.1 KiB
Plaintext
# ── Common Platform Environment Variables ──────────────────────
|
|
# Copy to .env and fill in real values.
|
|
|
|
# ── Azure Key Vault (optional — secrets fall back to env vars) ─
|
|
# Set this to resolve secrets from AKV instead of .env:
|
|
AZURE_KEYVAULT_URL=
|
|
|
|
# ── Cosmos DB (prototype defaults to local emulator) ───────────
|
|
# For the Docker prototype stack, leave these pointed at the local emulator.
|
|
# When you move to a managed environment later, replace them with real Azure values.
|
|
COSMOS_ENDPOINT=http://cosmos-emulator:8081
|
|
COSMOS_KEY=C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw==
|
|
COSMOS_DATABASE=lysnrai
|
|
|
|
# ── Auth (platform-service) ─────────────────────────
|
|
JWT_SECRET=change-me-prototype-jwt-secret
|
|
|
|
# ── Azure Blob Storage (platform-service) ─────────────────────
|
|
AZURE_BLOB_CONNECTION_STRING=
|
|
AZURE_BLOB_ACCOUNT_NAME=bytelystblobs
|
|
AZURE_BLOB_ACCOUNT_KEY=your-blob-key
|
|
|
|
# ── Stripe (platform-service) ────────────────────────
|
|
STRIPE_SECRET_KEY=sk_test_...
|
|
STRIPE_WEBHOOK_SECRET=whsec_...
|
|
STRIPE_PRICE_PRO=price_...
|
|
STRIPE_PRICE_ENTERPRISE=price_...
|
|
|
|
# ── Extraction Service (port 4005 + Python sidecar 4006) ─────
|
|
PYTHON_SIDECAR_URL=http://localhost:4006
|
|
DEFAULT_MODEL_ID=gemini-2.5-flash
|
|
GEMINI_API_KEY=your-gemini-api-key
|
|
|
|
# ── Webhooks (optional — fire-and-forget callbacks) ──────────
|
|
WEBHOOK_INVITATION_REDEEMED_URL=
|
|
WEBHOOK_REFERRAL_STATUS_URL=
|
|
WEBHOOK_WAITLIST_JOINED_URL=
|
|
|
|
# ── Telemetry (platform-service) ──────────────────────────────
|
|
TELEMETRY_ENABLED=true
|
|
TELEMETRY_ALERT_WEBHOOK_URL=
|
|
TELEMETRY_GEO_API_URL=http://ip-api.com/json
|
|
TELEMETRY_EVENT_TTL_DAYS=90
|
|
|
|
# ── Product Identity ──────────────────────────────────────────
|
|
DEFAULT_PRODUCT_ID=lysnrai
|