-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
26 lines (23 loc) · 812 Bytes
/
Copy path.env.example
File metadata and controls
26 lines (23 loc) · 812 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
26
# Backend (WW_ prefix — read by Pydantic Settings + ecowitt2mqtt service)
WW_DATABASE_URL=postgresql+asyncpg://waffleweather:changeme@localhost:5432/waffleweather
WW_MQTT_BROKER=localhost
WW_MQTT_PORT=1883
WW_MQTT_TOPIC=Gateway
WW_MQTT_USERNAME=waffleweather
WW_MQTT_PASSWORD=changeme
WW_CORS_ORIGINS=["http://localhost"]
WW_ENABLE_DOCS=false
WW_API_KEY=
# Lightning filter (ghost strike suppression for WH57 false positives)
# WW_LIGHTNING_FILTER_ENABLED=true
# WW_LIGHTNING_FILTER_DISTANCES=[12.0, 14.0]
# WW_LIGHTNING_FILTER_MAX_STRIKES=1
# Station
WW_STATION_NAME=My Weather Station
WW_STATION_LATITUDE=40.7128
WW_STATION_LONGITUDE=-74.0060
WW_STATION_ALTITUDE=10.0
WW_STATION_TIMEZONE=America/New_York
# Frontend
NEXT_PUBLIC_API_URL=http://localhost:8000
NEXT_PUBLIC_WS_URL=ws://localhost:8000/ws/live