-
Notifications
You must be signed in to change notification settings - Fork 1
/
env_example
63 lines (48 loc) · 1.47 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
##########################
# TiBillet / LaBoutik
# All the env are needed
##########################
DJANGO_SECRET=''
FERNET_KEY=''
POSTGRES_PASSWORD=''
POSTGRES_USER='laboutik_user'
POSTGRES_DB='laboutik'
DOMAIN='' # The domain of this instance ex : 'laboutik.tibillet.localhost'
FEDOW_URL='' # ex : https://fedow.tibillet.localhost/
LESPASS_TENANT_URL='' # ex : https://lespass.tibillet.localhost/
# The name of your cashless asset ex : TestCoin, FestivalCoin, etc ....
MAIN_ASSET_NAME='TestCoin'
# admin email. Required for the first user.
ADMIN_EMAIL=''
TIME_ZONE='Europe/Paris'
LANGUAGE_CODE='fr'
### OPTIONAL ENV ###
# For transactionnal email
# Usefull new admin and terminal verification
# Required for production
EMAIL_HOST=""
EMAIL_PORT=""
EMAIL_HOST_USER=""
EMAIL_HOST_PASSWORD=""
DEFAULT_FROM_EMAIL = "" # If empty, we use the EMAIL_HOST_USER
# BACKUP CRON TASK
# can be empty if you don't want to backup
# ex : borg init --encryption=repokey-blake2 .
# save key : borg key export . ./key && cat key && rm key
BORG_REPO=''
BORG_PASSPHRASE=''
# DEV AND TEST ONLY
# admin auto login, flush database, demonstration data, etc ...
# Don't push to production with debug, test or demo !
# Sentry Debug for django backend
SENTRY_DNS=""
# Sentry Debug for js frontend
SENTRY_FRONT_DNS=""
SENTRY_FRONT_ASSET=""
###!!!!!! Don't push to production with debug, test or demo !!!!!!###
DEBUG=0
TEST=0
DEMO=0
DEMO_TAGID_CM='EE144CE8'
DEMO_TAGID_CLIENT1='41726643'
DEMO_TAGID_CLIENT2='93BD3684'