forked from ofuochi/node-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.sample
More file actions
23 lines (19 loc) · 728 Bytes
/
env.sample
File metadata and controls
23 lines (19 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Application related stuff
PORT=3000
LOG_LEVEL="debug"
NODE_ENV="development"
HOST="localhost:3000"
APP_EMAIL="node-typescript-boilerplate@sample.com"
APP_MAX_LOGIN_ATTEMPTS=5
APP_LOCKOUT_TIME=5 #in minutes
# Random JWT string
JWT_SECRET="akdGDFHG=-0FDDASjDrff="
MONGODB_URI="mongodb://localhost:27017/node-typescript-boilerplate"
# Email service client
# You can use anyone you prefer. Mailgun is used here because it's popular and has a free subscription.
# For more infor https://app.mailgun.com
MAILGUN_API_KEY="Mailgun api key goes here"
MAILGUN_API_DOMAIN="domain goes here"
# Agend stuff (for cron jobs. Read more on it here https://github.com/agenda/agenda)
AGENDA_DB_COLLECTION="AgendaJobs"
AGENDA_CONCURRENCY=20