2026-07-07 17:50:51 -04:00
|
|
|
# OSINT Dashboard — environment configuration
|
|
|
|
|
# Copy to `.env` and adjust. All values have safe defaults for local compose.
|
|
|
|
|
|
|
|
|
|
# ── PostgreSQL / TimescaleDB ───────────────────────────────────────────────
|
|
|
|
|
DB_USER=osint
|
|
|
|
|
DB_PASSWORD=osint
|
|
|
|
|
DB_HOST=db
|
|
|
|
|
DB_PORT=5432
|
|
|
|
|
DB_NAME=osint_data
|
|
|
|
|
|
|
|
|
|
# ── NATS JetStream (optional — only needed when profile `ingest` is used) ──
|
|
|
|
|
NATS_URL=nats://nats:4222
|
|
|
|
|
|
|
|
|
|
# ── MinIO (optional — document storage; endpoint used if wired later) ──────
|
|
|
|
|
MINIO_ENDPOINT=minio:9000
|
|
|
|
|
MINIO_ACCESS_KEY=
|
|
|
|
|
MINIO_SECRET_KEY=
|
|
|
|
|
# "true" for TLS endpoints (e.g. S3-compatible prod); "false" for local HTTP.
|
|
|
|
|
MINIO_SECURE=false
|
2026-08-24 14:54:51 -04:00
|
|
|
|
|
|
|
|
# ── Camera discovery scraper ───────────────────────────────────────────────
|
|
|
|
|
# Comma-separated public directory/list URLs (Insecam-style pages or
|
|
|
|
|
# plain-text lists: url[|lat,lon|vendor|location]).
|
|
|
|
|
CAMERA_SOURCE_URLS=
|
|
|
|
|
CAMERA_SCRAPE_INTERVAL=3600
|
|
|
|
|
CAMERA_REQUEST_DELAY=2.0
|
|
|
|
|
NOMINATIM_URL=https://nominatim.openstreetmap.org
|
|
|
|
|
NOMINATIM_MIN_INTERVAL=1.1
|
|
|
|
|
SNAPSHOT_TTL_SECONDS=300
|