-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (26 loc) · 1.23 KB
/
.env.example
File metadata and controls
32 lines (26 loc) · 1.23 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
# API KEYS AND CONFIGURATION EXAMPLE FILE
# Change this file name to .env and fill in your API keys, configs, etc.
# Finnhub
FINNHUB_API_KEY=your_finnhub_key_here
# OpenSky (optional fallback when no flight feed is configured)
# New OpenSky accounts require OAuth2 client credentials (recommended).
# OPENSKY_CLIENT_ID=your_opensky_client_id
# OPENSKY_CLIENT_SECRET=your_opensky_client_secret
# Legacy accounts may still support basic auth:
# OPENSKY_USERNAME=your_opensky_email
# OPENSKY_PASSWORD=your_opensky_password
# Optional OpenSky query params
# OPENSKY_BBOX=45.8,5.9,47.8,10.5
# OPENSKY_EXTENDED=1
# OPENSKY_ICAO24=abc123,def456
# OPENSKY_TIME=1700000000
# Flight feed (JSON list or {"data": []}); supports comma-separated sources.
# FLIGHT_DATA_URL=https://source-a.example.com/positions,https://source-b.example.com/positions
# FLIGHT_DATA_PATH=C:\path\to\flight_feed.json,C:\path\to\flight_feed_alt.json
# Optional: shipping data endpoint returning JSON [{ "lat": 0.0, "lon": 0.0, "name": "", "type": "" }]
# SHIPPING_DATA_URL=https://your-shipping-endpoint.example.com/positions
# Optional: include flight categories in tracker views (defaults off).
# CLEAR_INCLUDE_COMMERCIAL=1
# CLEAR_INCLUDE_PRIVATE=1
# APP CONFIG
APP_ENV=development