-
Notifications
You must be signed in to change notification settings - Fork 11
/
.env
26 lines (19 loc) · 893 Bytes
/
.env
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
# Required. The MAC address for the Ambient Weather station. This can be found in the awnet
# application
STATION_MAC_ADDRESS=00:00:00:00:00:00
# Required. The URL to the server, including the port number if not running on port 80.
MQTT_SERVER=http://192.168.1.1:1883
# Required. The timezone the service is running in. For a list of valid timezone values
# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones.
# The value to use is in the "TZ database name" column.
TZ=America/Los_Angeles
# Required. The port this service runs on.
PORT=8080
# Optional. The username to log into the MQTT server with.
MQTT_USERNAME=username
# Optional. The password to log into the MQTT server with.
MQTT_PASSWORD=password
# Leave as-is unless you know what you are doing.
MQTT_REJECT_UNAUTHORIZED=false
# Log levels are error, warn, info, http, and debug. Default is info.
LOG_LEVEL=info