-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
28 lines (22 loc) · 854 Bytes
/
.env.example
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
# Where should we get regulation info from? (For example, in dev you could use a mock server)
API_BASE=https://api.regulations.gov/v4
# What level of logging should we use? Options are: error, warn, info, debug
LOG_LEVEL=info
# What port should we use for the Node web app?
PORT=3000
# How should we connect to Redis for session storage and regulation API call caching?
REDIS_URL=redis://:@localhost:6379
DISABLE_CACHE=false
# How should we connect to the Postgres database for user storage?
DB_USER=usgovregs
DB_PASS=usgovregs
DB_HOST=localhost
DB_PORT=5432
DB_NAME=usgovregs
# What salt should we use for hashing?
PSALT=longstringofnonsense
# What secret should we use for sessions?
SESS_SECRET=longstringofnonsense
# For use with the Mailgun API for sending email
MAILGUN_API_KEY=longstringofcharacters
MAILGUN_DOMAIN=apidomain12345.mailgun.org