generated from helsingborg-stad/gdi-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
78 lines (66 loc) · 2.05 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
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
#------------------------------------------------------------
#
# JWT_SHARED_SECRET is used to validate JWT
# and is a shared secret between federates in a
# solution/cluster
#
JWT_SHARED_SECRET=somethis-for-validating-JWT
# lifetime of issued access tokens, see https://github.com/zeit/ms.js
#JWT_EXPIRES_IN=30d
#------------------------------------------------------------
#
# Assign a superuser that always can login
#
#
#------------------------------------------------------------
#
# For development and testing, if a web invocation
# does not entail a bearer token for authorization,
# a default user value such as the one below can be defined
# NOTE: This should typically never be used in production
#
JWT_DEFAULT_USER={"id": "default"}
#------------------------------------------------------------
#
# FS (persist to disk) driver configuration
#
FS_DATA_PATH=.local/data
#------------------------------------------------------------
#
# Minio (s3-compatible) driver configuration
#
#MINIO_ENDPOINT=127.0.0.1
#MINIO_PORT=9000
#MINIO_ACCESS_KEY=abc123
#MINIO_SECRET_KEY=abc123
#MINIO_BUCKET=haffa
#MINIO_REGION=eu-north-1
#MINIO_USE_SSL=true
#------------------------------------------------------------
#
# Mongo DB driver configuration
#
#MONGODB_URI=mongodb://127.0.0.1:27017/haffa
#------------------------------------------------------------
#
# Passwordless configuration
#
#PASSWORDLESS_TTL=10m
PASSWORDLESS_FIXED_PINCODE=123456
#------------------------------------------------------------
#
# Brevo email notifications (https://www.brevo.com/)
#
#BREVO_API_KEY=abc123
#BREVO_FROM_NAME=Haffa
#------------------------------------------------------------
# The maximum number of days a reservation will be kept
#MAX_RESERVATION_DAYS=10
#------------------------------------------------------------
# The frequency of which reminders are sent
#REMINDER_FREQUENCY_DAYS=3
#------------------------------------------------------------
# Number of days to retent systemlog data
#SYSLOG_RETENTION_DAYS=10