-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.env.yaml
88 lines (63 loc) · 2.11 KB
/
sample.env.yaml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
## rename this file as `.env.yaml`
## DO NOT COMMIT `.env.yaml` as it holds your secret keys
# holds secret keys
secrets:
# debug build data
debug:
# [string] WIFI SSID
WIFI_SSID: ssid
# [string] WIFI password
WIFI_PASS: password
# [string] API token key
API_TOKEN_KEY: api_token_key
# [string] API secret key
API_SECRET_TOKEN: api_secret_token
# [string] API base url
API_BASE_URL: api_base_url
# release build data
release:
# [string] WIFI SSID
WIFI_SSID: ssid
# [string] WIFI password
WIFI_PASS: password
# [string] API token key
API_TOKEN_KEY: api_token_key
# [string] API secret key
API_SECRET_TOKEN: api_secret_token
# [string] API base url
API_BASE_URL: api_base_url
# device specific information
device_list:
# device type
- DEVICE_TYPE: bore_well_motor
# device name
DEVICE_NAME: Bore Well Motor
# device id
DEVICE_ID: bore-well-motor-xx
# device location
DEVICE_LOCATION: Room 1
# trigger a continuous period buzzer if the device's buzzer hasn't beeped for the past [FAILSAFE_TRIGGER_CONTINUOUS_PERIOD_BUZZER_BEEP_AFTER_MS]
# [int] in ms
FAILSAFE_TRIGGER_CONTINUOUS_PERIOD_BUZZER_BEEP_AFTER_MS: 10000
# device type
- DEVICE_TYPE: ground_well_motor
# device name
DEVICE_NAME: Ground Well Motor
# device id
DEVICE_ID: ground-well-motor-xx
# device location
DEVICE_LOCATION: Room 2
# trigger a continuous period buzzer if the device's buzzer hasn't beeped for the past [FAILSAFE_TRIGGER_CONTINUOUS_PERIOD_BUZZER_BEEP_AFTER_MS]
# [int] in ms
FAILSAFE_TRIGGER_CONTINUOUS_PERIOD_BUZZER_BEEP_AFTER_MS: 10000
# device type
- DEVICE_TYPE: roof_water_heater
# device name
DEVICE_NAME: Roof Solar Water Heater
# device id
DEVICE_ID: roof-solar-water-heater-xx
# device location
DEVICE_LOCATION: Room 3
# trigger a continuous period buzzer if the device's buzzer hasn't beeped for the past [FAILSAFE_TRIGGER_CONTINUOUS_PERIOD_BUZZER_BEEP_AFTER_MS]
# [int] in ms
FAILSAFE_TRIGGER_CONTINUOUS_PERIOD_BUZZER_BEEP_AFTER_MS: 10000