forked from umd-lib/annual-staffing-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv_example
36 lines (25 loc) · 809 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
# Example .env file
# Make a copy of this file named ".env" and fill out the properties
# Note: The .env file should _not_ be checked in to Git!
# File containing server-specific Rails environment variables.
# Do not check into Git!
# --- config/secrets.yml
# Secret key used to verify signed cookies
SECRET_KEY_BASE=
# --- config/database.yml
# The type of database
PROD_DATABASE_ADAPTER=postgresql
# The name of the database
PROD_DATABASE_NAME=annual_staffing_request
# The encoding to use
PROD_DATABASE_ENCODING=utf8
# The username used to connect to the database
PROD_DATABASE_USERNAME=gs
# The password used to connect to the database
PROD_DATABASE_PASSWORD=
# The host for the database
PROD_DATABASE_HOST=
# The port for the database
PROD_DATABASE_PORT=5432
# Pool size
PROD_DATABASE_POOL=10