-
Notifications
You must be signed in to change notification settings - Fork 2
/
.example.env
63 lines (49 loc) · 1.18 KB
/
.example.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
56
57
58
59
60
61
62
63
# default environment is set to development
# pass the environment to the process if it's not development
# e.g. NODE_ENV=test yarn migrate
# database
DATABASE_URL = postgres://postgres:password@localhost:5432/jumpstarter
DB_RECREATE = false
DB_ID_NAMESPACE = X
# redis
REDIS_URL = redis://localhost:6379
# server
HOST = localhost
PORT = 3000
WEB_APP_URL = http://localhost:3000
FORCE_SSL = false
PM2 = false
# pm2
# Set by Heroku or -1 to scale to max cpu core -1
WEB_CONCURRENCY = -1
# Max Memory per core
WEB_MEMORY = 512
# country
COUNTRY = US
COUNTRY_CODE = +1
# auth
AUTH_JWT_KEY = NeverShareYourSecret
AUTH_JWT_PWD_KEY = NeverShareYourSecret
# scheduler
START_SCHEDULER = true
# cache
CACHED_MODELS =
# model cache
MODEL_CACHE_DURATION = 3600000
MODEL_CACHE_TIMEOUT = 30000
# new relic
NEW_RELIC_LICENSE_KEY = XXX
NEW_RELIC_LOG_LEVEL = info
# email
DEFAULT_MAIL_SERVICE = ses
SUPPORT_FROM_EMAIL = Support Team <[email protected]>
INFO_FROM_EMAIL = Info <[email protected]>
NOTIFICATIONS_FROM_EMAIL = Notifications Team <[email protected]>
# aws ses
AWS_SES_ACCESS_KEY_ID = XXX
AWS_SES_SECRET_ACCESS_KEY = XXX
# sendgrid
SENDGRID_API_KEY = XXX
# sentry
SENTRY_DSN =
SENTRY_ENABLED =