-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 840 Bytes
/
.env.example
File metadata and controls
30 lines (24 loc) · 840 Bytes
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
JWT_SECRET= # secret string
DOMAIN_NAME= # domaine name for the api
HTTPS= # true/false
FRONTEND_URL= # url of the frontend that may appear the emails, etc.
FERNET_KEY= # See the README
# SMTP server information
SMTP_FROM= # Sender of the emails
SMTP_HOST=
SMTP_PORT=
SMTP_USER=
SMTP_PASS=
# postgresql information
POSTGRES_DB=
POSTGRES_USER=
POSTGRES_PASSWORD=
POSTGRES_HOST= # If using docker, must "postgres"
INFLUXDB_HOST= # http://influxdb:8086
DOCKER_INFLUXDB_INIT_MODE= # setup
DOCKER_INFLUXDB_INIT_USERNAME=
DOCKER_INFLUXDB_INIT_PASSWORD=
DOCKER_INFLUXDB_INIT_ORG=
DOCKER_INFLUXDB_INIT_BUCKET=
DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=
DOCKER_INFLUXDB_RETENTION= # Format "30d" for 30 days (see the parse_retention() function in api/influx.py)