-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (20 loc) · 731 Bytes
/
Copy path.env.example
File metadata and controls
25 lines (20 loc) · 731 Bytes
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
# LeadGuard environment configuration — copy to .env and fill in values
# All secrets are optional; the system runs on fully public/anonymous data by default.
# --- Census API (optional) ---
# Free key from https://api.census.gov/data/key_signup.html
# Increases rate limits; leave blank for anonymous access (fine for sample/dev)
CENSUS_API_KEY=
# --- App settings ---
# Log level: DEBUG | INFO | WARNING | ERROR
LOG_LEVEL=INFO
# --- Model & data paths (override for custom layout) ---
# MODEL_DIR=models/xgboost
# DATA_DIR=data
# SAMPLE_DIR=data/sample
# --- API ---
API_HOST=0.0.0.0
API_PORT=8000
# --- Scoring weights (override configs/scoring.yaml at runtime if needed) ---
# LAMBDA1=0.60
# LAMBDA2=0.25
# LAMBDA3=0.15