-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
41 lines (31 loc) · 922 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
# Instructions: Make a copy of this file named .env in the same directory and
# fill in the below values.
# NOTE: If a value (such as a password) contains characters besides letters,
# numbers, and underscores, you may have to write the value as a string
# (surround it with quotes).
### DATABASE CREDENTIALS ###
DB_NAME=
DB_USER=
DB_PASSWORD=
# And if you have a Test database:
TEST_DB_NAME=
TEST_DB_USER=
TEST_DB_PASSWORD=
### EMAIL ###
# email to send feedback to
APPLICATION_FEEDBACK_TO_EMAIL=
# email address to send from
APPLICATION_FEEDBACK_FROM_EMAIL=
# email password
APPLICATION_FEEDBACK_FROM_PWD=
# smtp address like smtp.gmail.com
APPLICATION_EMAIL_SMTP_ADDRESS=
# smtp email domain
APPLICATION_EMAIL_DOMAIN=
# url that will be used to create links in emails
APPLICATION_EMAIL_URL_HOST=
#### UNICORN WORKER KILLER ###
UNICORN_REQUEST_MIN=
UNICORN_REQUEST_MAX=
UNICORN_MEMORY_MIN=
UNICORN_MEMORY_MAX=