-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
41 lines (36 loc) · 1.72 KB
/
.env.example
File metadata and controls
41 lines (36 loc) · 1.72 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
# SentinelAI — Local Development Configuration
# Copy this file to .env and customize as needed.
# Run: cp .env.example .env && docker compose up --build
# ---------------------------------------------------------------------------
# Warehouse mode
# ---------------------------------------------------------------------------
# Use "postgres" for local development (default).
# Use "snowflake" to route writes/reads to a real Snowflake account.
WAREHOUSE_MODE=postgres
# ---------------------------------------------------------------------------
# Postgres (used when WAREHOUSE_MODE=postgres)
# ---------------------------------------------------------------------------
POSTGRES_USER=sentinel
POSTGRES_PASSWORD=sentinel
POSTGRES_DB=sentinel
DATABASE_URL=postgres://sentinel:sentinel@postgres:5432/sentinel?sslmode=disable
# ---------------------------------------------------------------------------
# Snowflake (used when WAREHOUSE_MODE=snowflake — leave blank for local dev)
# ---------------------------------------------------------------------------
SNOWFLAKE_ACCOUNT=
SNOWFLAKE_USER=
SNOWFLAKE_PASSWORD=
SNOWFLAKE_DATABASE=
SNOWFLAKE_SCHEMA=
SNOWFLAKE_WAREHOUSE=
# ---------------------------------------------------------------------------
# LLM / Ollama (optional — llm-guard falls back to stub if unreachable)
# ---------------------------------------------------------------------------
OLLAMA_HOST=http://ollama:11434
LLM_MODEL=llama2
# ---------------------------------------------------------------------------
# Internal service URLs
# ---------------------------------------------------------------------------
INGESTION_URL=http://ingestion-service:8080
DRIFT_ENGINE_URL=http://drift-engine:7070
LLM_GUARD_URL=http://llm-guard:8000