35 lines
715 B
Bash
35 lines
715 B
Bash
# C0PY — Environment Variables
|
|
# All secrets via Infisical (vault.siax.io). Never commit real values.
|
|
|
|
# Server
|
|
PORT=3000
|
|
NODE_ENV=development
|
|
|
|
# CL0UD (Auth/RBAC/Tenant)
|
|
CL0UD_BASE_URL=https://cl0ud.siax.io
|
|
CL0UD_AUDIENCE=siax
|
|
|
|
# Zitadel
|
|
ZITADEL_ISSUER=https://id-customers.siax.io
|
|
ZITADEL_AUDIENCE=api.c0py.siax.io
|
|
|
|
# DATABASE
|
|
DATABASE_URL=postgresql://c0py:c0py@localhost:5432/c0py
|
|
|
|
# AUD0 (Audit/Evidence) — not yet live, fail-closed
|
|
AUD0_BASE_URL=
|
|
AUD0_API_KEY=
|
|
|
|
# ST0RE (Storage) — not yet live
|
|
ST0RE_BASE_URL=
|
|
|
|
# INF0 (AI analysis) — optional, for content analysis
|
|
INF0_BASE_URL=
|
|
|
|
# N0D (Async crawling jobs) — optional
|
|
N0D_BASE_URL=
|
|
|
|
# C0PY internal
|
|
CRAWL_TIMEOUT_MS=30000
|
|
MAX_REGISTRY_PAGES=1000
|