-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.example.env
51 lines (38 loc) · 962 Bytes
/
main.example.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
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
####################
# Base options
####################
user=admin
password=admin123
BASE_DB_URL=http://influxdb:8086
####################
# Enphase Specifics
####################
ENVOY_IP=null
ENVOY_BEARER_TOKEN=null
####################
# Telegraf options
####################
DOCKER_TELEGRAF_INTERVAL=15s
DOCKER_TELEGRAF_AUTH_RENEW=5m
####################
# InfluxDB options
####################
DOCKER_INFLUXDB_INIT_MODE=setup
DOCKER_INFLUXDB_INIT_USERNAME=${user}
DOCKER_INFLUXDB_INIT_PASSWORD=${password}
DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=myToken_myToken
DOCKER_INFLUXDB_INIT_ORG=Org
DOCKER_INFLUXDB_INIT_BUCKET=Solar
CREATE_DB=enphase
####################
# Grafana options
####################
GF_SECURITY_ADMIN_USER=${user}
GF_SECURITY_ADMIN_PASSWORD=${password}
GF_AUTH_ANONYMOUS_ENABLED=true
####################
# Chronograf options
####################
INFLUXDB_USERNAME=${user}
INFLUXDB_PASSWORD=${password}
INFLUXDB_URL=${BASE_DB_URL}