-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env-example
38 lines (31 loc) · 1.4 KB
/
.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
27
28
29
30
31
32
33
34
35
36
37
38
# environment variables for services as needed - read by docker-compose.
# please set the grafana and postgres passwords before running `.l99 start` again.
# ---------------------------------------------------------
# grafana
# ---------------------------------------------------------
# GRAFANA_PORT=3000 # default
GRAFANA_PORT=80
# these will get used the first time grafana is run
GF_SECURITY_ADMIN_USER=admin
GF_SECURITY_ADMIN_PASSWORD=grafana # IMPORTANT - set this BEFORE running grafana
# ---------------------------------------------------------
# postgres
# ---------------------------------------------------------
# PGHOST=host.docker.internal # use this for mac - see https://stackoverflow.com/a/58081948/243392
PGHOST=postgres # use this for ubuntu, friendlycore, etc
PGPORT=5432
PGDATABASE=postgres
PGUSER=postgres
# whatever you set here is the initial pw for the db - must change manually afterwards.
PGPASSWORD=postgres # IMPORTANT - set this BEFORE running postgres
# ---------------------------------------------------------
# backup
# ---------------------------------------------------------
# AWS_ACCESS_KEY_ID: <key> # set this
# AWS_SECRET_ACCESS_KEY: <key> # set this
# NOTIFICATION_URLS: <url> # set this
# ---------------------------------------------------------
# sematext
# ---------------------------------------------------------
# INFRA_TOKEN=<key> # set this
# LOGS_TOKEN=<key> # set this