mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-04-29 14:35:57 +02:00
90c2e90e2c
- Parallelized startup (60s → 15s) via ThreadPoolExecutor - Adaptive polling engine with ETag caching (no more bbox interrupts) - useCallback optimization for interpolation functions - Sliding LAYERS/INTEL edge panels replace bulky Record Panel - Modular fetcher architecture (flights, geo, infrastructure, financial, earth_observation) - Stable entity IDs for GDELT & News popups (PR #63, credit @csysp) - Admin auth (X-Admin-Key), rate limiting (slowapi), auto-updater - Docker Swarm secrets support, env_check.py validation - 85+ vitest tests, CI pipeline, geoJSON builder extraction - Server-side viewport bbox filtering reduces payloads 80%+ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Former-commit-id: f2883150b5bc78ebc139d89cc966a76f7d7c0408
24 lines
1.2 KiB
Bash
24 lines
1.2 KiB
Bash
# ShadowBroker Backend — Environment Variables
|
|
# Copy this file to .env and fill in your keys:
|
|
# cp .env.example .env
|
|
|
|
# ── Required Keys ──────────────────────────────────────────────
|
|
# Without these, the corresponding data layers will be empty.
|
|
|
|
OPENSKY_CLIENT_ID= # https://opensky-network.org/ — free account, OAuth2 client ID
|
|
OPENSKY_CLIENT_SECRET= # OAuth2 client secret from your OpenSky dashboard
|
|
AIS_API_KEY= # https://aisstream.io/ — free tier WebSocket key
|
|
|
|
# ── Optional ───────────────────────────────────────────────────
|
|
|
|
# Override allowed CORS origins (comma-separated). Defaults to localhost + LAN auto-detect.
|
|
# CORS_ORIGINS=http://192.168.1.50:3000,https://my-domain.com
|
|
|
|
# Admin key — protects sensitive endpoints (API key management, system update).
|
|
# If unset, these endpoints remain open (fine for local dev).
|
|
# Set this in production and enter the same key in Settings → Admin Key.
|
|
# ADMIN_KEY=your-secret-admin-key-here
|
|
|
|
# LTA Singapore traffic cameras — leave blank to skip this data source.
|
|
# LTA_ACCOUNT_KEY=
|