Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions lora-ingest/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# ChirpStack gateway local IP (default port 1883)
CHIRPSTACK_MQTT_URL=mqtt://192.168.1.1:1883

# ChirpStack application UUID (Settings → Applications → copy ID)
CHIRPSTACK_APPLICATION_ID=your-application-uuid

# AES-256-GCM app-layer key — MUST match APP_ENC_KEY_HEX in lora_node.py
# Generate: python3 -c "import secrets; print(secrets.token_hex(32))"
APP_ENC_KEY_HEX=

# Shared secret for HMAC-SHA256 signing of requests to krobjob
# Generate: python3 -c "import secrets; print(secrets.token_hex(32))"
BASEFLOW_HMAC_KEY=

# krobjob ingest endpoint (internal — not public)
KROBJOB_INGEST_URL=https://your-deployment.vercel.app/api/internal/lora-ingest
Loading