You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openhamclock/.env.example

87 lines
2.1 KiB

# OpenHamClock Configuration
#
# This file is automatically copied to .env on first run.
# Edit .env with your station info - it won't be overwritten by updates.
#
# After editing, restart the server: npm start
# ===========================================
# REQUIRED - Your Station Information
# ===========================================
# Your amateur radio callsign
CALLSIGN=N0CALL
# Your Maidenhead grid locator (4 or 6 character)
LOCATOR=FN31
# Your station coordinates (optional - calculated from LOCATOR if not set)
LATITUDE=
LONGITUDE=
# ===========================================
# SERVER SETTINGS
# ===========================================
# Port to run the server on (default: 3000)
PORT=3000
# Host/IP to bind to
# localhost = only accessible from this computer
# 0.0.0.0 = accessible from other devices on your network
HOST=localhost
# ===========================================
# DISPLAY PREFERENCES
# ===========================================
# Units: 'imperial' or 'metric'
# Affects temperature (°F/°C) and distances (mi/km)
UNITS=imperial
# Time format: '12' or '24' hour
TIME_FORMAT=12
# Theme: 'dark', 'light', 'legacy', or 'retro'
THEME=dark
# Layout: 'modern' or 'classic'
LAYOUT=modern
# ===========================================
# OPTIONAL - External Services
# ===========================================
# ITURHFProp service URL (for advanced propagation predictions)
ITURHFPROP_URL=
# DX Spider Proxy URL (for DX cluster spots)
DXSPIDER_PROXY_URL=
# OpenWeatherMap API key (for local weather display)
# Get a free key at https://openweathermap.org/api
OPENWEATHER_API_KEY=
# ===========================================
# FEATURE TOGGLES
# ===========================================
# Show POTA spots on map (true/false)
SHOW_POTA=true
# Show satellite tracks on map (true/false)
SHOW_SATELLITES=true
# Show DX paths on map (true/false)
SHOW_DX_PATHS=true
# ===========================================
# DX CLUSTER SETTINGS
# ===========================================
# Your callsign for DX cluster login (default: CALLSIGN-56)
DX_CLUSTER_CALLSIGN=
# Spot retention time in minutes (5-30)
SPOT_RETENTION_MINUTES=30

Powered by TurnKey Linux.