-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
76 lines (65 loc) · 3.44 KB
/
env.example
File metadata and controls
76 lines (65 loc) · 3.44 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# ============================================================================
# FLIGHT DATA PROVIDER CONFIGURATION
# ============================================================================
# Provider Priority Order (comma-separated list)
# Available providers: airframes, flightaware, aviationstack, flightradar24, airnav, adsbim, adsblol, opensky
# The app will try providers in this order until it finds data
# Default: airframes,flightaware,aviationstack,flightradar24,airnav,adsbim,adsblol,opensky
FLIGHT_PROVIDER_PRIORITY=airframes,flightaware,aviationstack,flightradar24,airnav,adsbim,adsblol,opensky
# ============================================================================
# AIRFRAMES.IO API (PRIORITY - Our service!)
# ============================================================================
# Contact: api@airframes.io for access
AIRFRAMES_API_KEY=
# Optional: Override API URL for testing/development
# AIRFRAMES_API_URL=https://api.airframes.io/v1
# ============================================================================
# FLIGHTAWARE AEROAPI
# ============================================================================
# Sign up at: https://flightaware.com/commercial/aeroapi/
# Note: Requires paid subscription for most features
FLIGHTAWARE_API_KEY=
# ============================================================================
# AVIATIONSTACK API
# ============================================================================
# Sign up at: https://aviationstack.com/signup/free
# Free tier: 100 requests/month
AVIATIONSTACK_API_KEY=
# ============================================================================
# FLIGHTRADAR24 API
# ============================================================================
# Sign up at: https://www.flightradar24.com/commercial-services/data-feeds
# Note: Requires commercial subscription
FLIGHTRADAR24_API_KEY=
# ============================================================================
# AIRNAV RADARBOX API
# ============================================================================
# Sign up at: https://www.radarbox.com/api
# Free tier available with limitations
AIRNAV_API_KEY=
# ============================================================================
# AVIATION EDGE API
# ============================================================================
# Sign up at: https://aviation-edge.com/
AVIATION_EDGE_API_KEY=
# ============================================================================
# FREE/OPEN PROVIDERS (No configuration needed)
# ============================================================================
# - adsb.im: Free flight schedule lookup by callsign and position (no API key required)
# - adsb.lol: Free real-time ADS-B data with geographic search (no API key required)
# - OpenSky Network: Free but with rate limits (no API key required)
# ============================================================================
# UI THEME CONFIGURATION
# ============================================================================
# Available themes (comma-separated list)
# Options: airport, modern, ocean, forest, sunset, matrix, superthin
# Leave empty to enable all themes
# Default: all themes enabled
NEXT_PUBLIC_AVAILABLE_THEMES=airport,modern,ocean,forest,sunset,matrix,superthin
# Default theme (must be one of the available themes)
# Default: airport
NEXT_PUBLIC_DEFAULT_THEME=airport
# Default color mode
# Options: system, light, dark
# Default: system
NEXT_PUBLIC_DEFAULT_COLOR_MODE=system