-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
42 lines (28 loc) · 946 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
42
# 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).
### SECRETS ###
# Generate each of these secrets using the command 'rake secret'
SECRET_KEY_BASE=
DEVISE_SECRET_KEY=
### WEB URLS ###
# If this is development, set the web urls that you want to deploy to.
# If this is staging, you only have to set STAGING_WEB_URL.
# If this is production, you only have to set PRODUCTION_WEB_URL.
STAGING_WEB_URL=
PRODUCTION_WEB_URL=
### 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 ###
APPLICATION_ERROR_FROM_EMAIL=
APPLICATION_FEEDBACK_TO_EMAIL=
APPLICATION_FEEDBACK_FROM_EMAIL=
APPLICATION_FEEDBACK_FROM_PWD=