forked from rrrobo/rcj-rescue-scoring
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprocess.env
55 lines (43 loc) · 903 Bytes
/
process.env
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
# db vars see more at http://mongoosejs.com/docs/connections.html
DB_CONNECT_STR=mongodb://localhost/rcj-cms
# Session Secret
SESSION_SECRET=rcjscoring
#Redis
REDIS_HOST=localhost
REDIS_PORT=6379
# web vars
WEB_HOSTPORT=3000
# log vars ERROR/INFO/DEBUG
MAIN_LOG_LVL=DEBUG
# Account hardcoded
user=admin
password=admin
# Default Account Setting
dUsername=admin
dPassword=adminpass
dAdmin=true
dSDAdmin=true
# Mail Server Configuration
#MAIL_SMTP=smtp.example.com
#MAIL_PORT=587
#MAIL_USER=USER
#MAIL_PASS=PASS
#MAIL_SENDER=RoboCupJunior CMS
#MAIL_MAX_PER_SECOND=5
# REGISTRATION SYSTEM
CMS_PROTOCOL=http
CMS_HOSTNAME=localhost:3000
# SCALEOUT
PROCESS_NUM=1
# LIMITER
LIMITER_WINDOW_MS=1000
LIMITER_MAX=50
# AUTOMATIC BACKUP
#BACKUP_INTERVAL_HOUR=24
#BACKUP_KEEP_VERSION=3
# ENV
# STG or PROD
ENVIRONMENT=PROD
NODE_ENV=production