-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
41 lines (32 loc) · 852 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
29
30
31
32
33
34
35
36
37
38
39
40
41
# domain where this app runs
HOST=
# true for https, false otherwise (default)
IS_SECURE=
# PostgreSQL connection parameters
# default 'localhost'
PGHOST=
# default 5432
PGPORT=
# default 'jamcomments'
PGUSER=
# default 'jamcomments'
PGPASSWORD=
# default 'jamcomments'
PGDATABASE=
# port on which the API server should listen, defaults to 3000
API_PORT=
# port on which the web admin should listen, defaults to 3030
WEB_PORT=
# port on which the web admin is ultimately accessible
WEB_PORT_PUBLIC
# arbitrary string that secures the sessions
SESSION_SECRET=
# lifetime of a session in minutes, defaults to 30 days
SESSION_LIFETIME=
# authentication for Mailgun, required for password reset emails
MAILGUN_API_KEY=
MAILGUN_DOMAIN=
# email address from which the email is sent
MAILGUN_SENDER=
# max file size for uploads
UPLOAD_MAX_SIZE_BYTES=