-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.example
77 lines (56 loc) · 1.25 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
# Node environment (production|development)
NODE_ENV=production
SITE_URL=http://127.0.0.1
DOMAIN_NAME=localhost
#########
# PORTS #
#########
# Expose the UI on this port
UI_PORT=3000
API_PORT=8080
APP_SECRET=some-long-secret-string-12345
MONGODB_PATH=mongodb://mongo:27017/learninglocker_v2
#MONGO_SOCKET_TIMEOUT_MS=300000
#MONGO_CONNECTION_POOLSIZE=20
MONGODB_TEST_PATH=mongodb://localhost:27017/llv2tests
REDIS_URL=redis://redis:6379/0
# REDIS_HOST=127.0.0.1
# REDIS_PORT=6379
# REDIS_DB=0
# A prefix for each key in the Redis DB e.g. DEVELOPMENT/PROD
REDIS_PREFIX=LEARNINGLOCKER
###########
# Logging #
###########
# Minimum logging level (error|warning|info|debug|silly)
LOG_MIN_LEVEL=info
LOG_DIR=logs
TEST_LOG_MIN_LEVEL=debug
COLOR_LOGS=true
#########
# OAuth #
#########
# Enable Google OAuth
# These details are available from the google developer console
GOOGLE_ENABLED=false
########
# Mail #
########
# SMTP credentials
#SMTP_HOST=127.0.0.1
#SMTP_USER=user
#SMTP_PASS=password
#SMTP_PORT=587
#SMTP_SECURED=false
#SMTP_IGNORE_TLS=false
#SMTP_REQUIRE_TLS=false
##########
# Queues #
##########
QUEUE_PROVIDER=REDIS
QUEUE_NAMESPACE=DEV
################
# File storage #
################
# The file storage type (local*|amazon|google|azure)
FS_REPO=local