-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
35 lines (27 loc) · 907 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
27
28
29
30
31
32
33
34
35
# your timezone
export TZ='America/Montreal'
# your gmail account
export ACCOUNT='[email protected]'
# from field to send weekly summary email
export FROM='John Doe <[email protected]>'
# TO field to send weekly summary email
export TO='[email protected]'
# Triggers for weekly summary email
export SUMMARY_DAY='SUNDAY'
export SUMMARY_HOUR='16'
# URL to your Grafana dashboard
export GRAFANA_URL='https://my.grafana.com'
# go to https://ipinfo.io/ for more details
export IP_INFOS_TOKEN='00000000000000'
# database informations
export DB_USER='john_doe'
export DB_PASSWORD='password'
export DB_HOSTNAME='localhost'
export DB_PORT='5432'
export DB_NAME='spams_remover'
# optional. Use only if db access should be made over SSH tunnel
export SSH_HOST='localhost'
export SSH_USERNAME='john_doe'
export SSH_PRIVATE_KEY_PATH='$HOME/.ssh/id_rsa'
export SSH_PASSPHRASE='passphrase'
export SSH_PORT='22'