-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
26 lines (22 loc) · 880 Bytes
/
.env.example
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
# .env (Environment variables) file for the IoT stack
# Rename this file to .env and update the values as needed
# Grafana credentials (http://localhost:3000)
GF_SECURITY_ADMIN_PASSWORD=securepassword
# InfluxDB credentials (http://localhost:8086)
INFLUXDB_URL=http://localhost:8086
INFLUXDB_TOKEN=AAAA-BBBB-CCCC-DDDD # any random token!
INFLUXDB_ORG=iot_org
INFLUXDB_BUCKET=iot_data
INFLUXDB_USERNAME=admin
INFLUXDB_PASSWORD=securepassword
# Netbird credentials (http://localhost:8080)
NETBIRD_SETUP_KEY=<REPLACE_WITH_YOUR_NETBIRD_SETUP_KEY>
# Use Netbird UI https://app.netbird.io/ to create this reusable setup key
# Go to Settings -> Setup Keys -> Create Setup Key -> Reusable=true -> Save
# Mosquitto MQTT broker (mqtts://localhost:8883)
MQTT_BROKER=mosquitto
MQTT_PORT=8883
MQTT_TOPIC=iot/data
MQTT_USERNAME=admin
MQTT_PASSWORD=securepassword
CA_CERT_PATH=/certs/ca.crt