-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.config
32 lines (24 loc) · 1.01 KB
/
.env.config
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
# 'dev' or 'production'
NODE_ENV= 'dev'
# Connection string URI for your MongoDB database
DATABASE=''
# Port that this app runs on
PORT='3000'
# Long random string used to verify JWT tokens for user authentication
JWT_SECRET='shhhh super secret code here bro'
# Root URL for this app
ROOT_URL='http://localhost:3000'
# Credentials for the admin user created at app initialization
ADMIN_EMAIL='admin@freetailhackers.com'
ADMIN_PASS='tacocat'
# Used to send verification, registration, and confirmation emails
EMAIL_CONTACT='Team @ Freetail Hackers <admin@freetailhackers.com>'
EMAIL_HOST='smtp.gmail.com'
EMAIL_USER='example@example.com'
EMAIL_PASS='password'
EMAIL_PORT='465'
EMAIL_HEADER_IMAGE='https://lh3.googleusercontent.com/hVvq4BHGfiU2IhZzIIW3005FTdjjw3ovhMsXIFsE12YFFQN3KCfJhMA4cmI41yw0WEwsJI-Lu05YyMw=w2560-h1312-rw'
# 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
SLACK_HOOK='https://hooks.slack.com/services/yourapikey'