-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.env.template
executable file
·56 lines (42 loc) · 1.26 KB
/
.env.template
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
# 'dev' or 'production'
NODE_ENV= 'dev '
# Connection string URI for your MongoDB database
DATABASE=''
# Port that this app runs on
PORT='3005'
# Long random string used to verify JWT tokens for user authentication
JWT_SECRET='something super secret and super long'
# Root URL for this app
ROOT_URL=''
# Used to send verification, registration, and confirmation emails
EMAIL_CONTACT=''
EMAIL_HOST=''
EMAIL_USER=''
EMAIL_PASS=''
EMAIL_PORT=''
# Limits the number of users that can join a team
TEAM_MAX_SIZE=4
# Used to send error messages to your Slack team when the API catches an error
ERROR_SLACK_HOOK='https://hooks.slack.com/services/yourapikey'
# Used to send error messages to your Slack team as a backup of the system audit log
AUDIT_SLACK_HOOK='https://hooks.slack.com/services/yourapikey'
# UIDs of admins on Slack so they can be @ messaged
ADMIN_UIDS=''
# Slack auto invite address
SLACK_INVITE=''
SLACK_INVITE_TOKEN=''
# IMAP address for incoming HelloSign emails
WAIVER_EMAIL=''
WAIVER_PASSWORD=''
WAIVER_ADDRESS=''
WAIVER_PORT=''
# RAVEN DATA
CLIENT_RAVEN_KEY=''
SERVER_RAVEN_KEY=''
#Built-in auto pull
GITHUB_SECRET=''
GITHUB_ORIGIN='[email protected]:MasseyHacks/MasseyHacks-V-Registration.git'
GITHUB_BRANCH='master'
# 2FA toggle
# Blank = disabled
TUFA_ENABLED=''