-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
55 lines (45 loc) · 3.28 KB
/
.env.example
File metadata and controls
55 lines (45 loc) · 3.28 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# DeepSigma Environment Configuration
# Copy to .env and fill in values as needed.
# ── Storage Backend ────────────────────────────────────────────────────────
# Supported: sqlite:///path/to/db.sqlite | postgresql://user:pass@host:5432/db | jsonl:///path/to/dir
DEEPSIGMA_STORAGE_URL=sqlite:///data/deepsigma.db
# ── Dashboard API Server ─────────────────────────────────────────────────────
PORT=8000
CORS_ORIGINS=http://localhost:3000,http://localhost:5173
DATA_DIR= # Override default data directory (optional)
# ── Dashboard Frontend (Vite) ────────────────────────────────────────────────
VITE_API_BASE=http://localhost:8000
# ── OpenTelemetry ────────────────────────────────────────────────────────────
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
OTEL_SERVICE_NAME=deepsigma
# ── Overwatch Base URL ───────────────────────────────────────────────────────
OVERWATCH_BASE_URL=http://localhost:8000
# ── SharePoint Connector (E17) ───────────────────────────────────────────────
SP_TENANT_ID=
SP_CLIENT_ID=
SP_CLIENT_SECRET=
SP_SITE_ID=
SP_WEBHOOK_SECRET= # HMAC-SHA256 secret for webhook verification
# ── Power Platform / Dataverse Connector (E18) ───────────────────────────────
DV_ENVIRONMENT_URL= # e.g. https://org.crm.dynamics.com
DV_CLIENT_ID=
DV_CLIENT_SECRET=
DV_TENANT_ID=
PA_WEBHOOK_SECRET= # HMAC-SHA256 secret for Power Automate webhooks
# ── AskSage Connector (E20) ─────────────────────────────────────────────────
ASKSAGE_EMAIL=
ASKSAGE_API_KEY=
ASKSAGE_BASE_URL=https://api.asksage.ai
# ── Snowflake Connector (E21) ───────────────────────────────────────────────
SNOWFLAKE_ACCOUNT= # e.g. xy12345.us-east-1
SNOWFLAKE_USER=
SNOWFLAKE_PRIVATE_KEY_PATH= # Path to RSA private key (JWT auth)
SNOWFLAKE_TOKEN= # Pre-generated OAuth/PAT token (alternative)
SNOWFLAKE_DATABASE=
SNOWFLAKE_SCHEMA=PUBLIC
SNOWFLAKE_WAREHOUSE=
# ── Webhook Notifications (#107) ──────────────────────────────────────────
WEBHOOK_MAX_RETRIES=3 # Max delivery attempts per webhook
WEBHOOK_BASE_DELAY=1.0 # Base delay for exponential backoff (seconds)
WEBHOOK_MAX_DELAY=60.0 # Max delay cap for backoff (seconds)
WEBHOOK_TIMEOUT=10 # HTTP request timeout (seconds)