2024-06-24 08:05:47 -07:00
# Description: Environment variables for the application
2024-06-28 09:49:43 -07:00
# Postgres connection details
DATABASE_URL = postgres://postgres:postgres@postgres:5432/meshtastic
2024-06-24 08:05:47 -07:00
# Prometheus connection details
2024-06-24 11:44:10 -07:00
PROMETHEUS_COLLECTOR_PORT = 9464
2024-06-24 08:05:47 -07:00
PROMETHEUS_JOB = example
# MQTT connection details
2024-07-09 23:40:16 -07:00
MQTT_HOST = mqtt.meshtastic.org
2024-06-24 08:05:47 -07:00
MQTT_PORT = 1883
2024-07-09 23:40:16 -07:00
MQTT_USERNAME = meshdev
MQTT_PASSWORD = large4cats
2024-06-24 08:05:47 -07:00
MQTT_KEEPALIVE = 60
MQTT_TOPIC = 'msh/israel/#'
MQTT_IS_TLS = false
2024-07-08 12:24:41 -07:00
# MQTT protocol version (default: MQTTv5) the public MQTT server supports MQTTv311
# Options: MQTTv311, MQTTv31, MQTTv5
MQTT_PROTOCOL = MQTTv311
# MQTT callback API version (default: VERSION2) the public MQTT server supports VERSION2
# Options: VERSION1, VERSION2
MQTT_CALLBACK_API_VERSION = VERSION2
2024-06-24 08:05:47 -07:00
# Exporter configuration
2024-06-24 11:44:10 -07:00
## Hide source data in the exporter (default: false)
MESH_HIDE_SOURCE_DATA = false
## Hide destination data in the exporter (default: false)
MESH_HIDE_DESTINATION_DATA = false
## Filtered ports in the exporter (default: 1, can be a comma-separated list of ports)
FILTERED_PORTS = 0
2024-06-25 12:39:27 -07:00
## Hide message content in the TEXT_MESSAGE_APP packets (default: true) (Currently we only log message length, if we hide then all messages would have the same length)
2024-06-28 03:59:15 -07:00
HIDE_MESSAGE = false
## MQTT server Key for decoding
2024-06-28 04:19:45 -07:00
MQTT_SERVER_KEY = 1PG7OiApB1nwvP+rz05pAQ= =