-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (18 loc) · 1.74 KB
/
Copy path.env.example
File metadata and controls
23 lines (18 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ── Postgres (Supabase or self-hosted) ────────────────────────────────────────
DATABASE_URL=postgresql://postgres:password@db.your-project.supabase.co:5432/postgres
# ── Local file storage ────────────────────────────────────────────────────────
# Temporary directory for downloaded ERCOT ZIP files during processing.
# Files can be removed after the ETL queue is drained.
DATA_DIR=./data
# ── ERCOT API ─────────────────────────────────────────────────────────────────
# Defaults to https://www.ercot.com — only override for testing
ERCOT_API_BASE=https://www.ercot.com
# ── API server ────────────────────────────────────────────────────────────────
API_HOST=0.0.0.0
API_PORT=3000
# ── sqlx ──────────────────────────────────────────────────────────────────────
# Set to 1 to use the .sqlx/ offline query cache (required in CI / no-DB builds)
SQLX_OFFLINE=false
# ── Logging ───────────────────────────────────────────────────────────────────
# Comma-separated directives: esiid_api=info,tower_http=debug
RUST_LOG=info