-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.example
76 lines (60 loc) · 2.09 KB
/
.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
## Rename this to a file ending with `.env` (e.g. `development.env`, `staging.env`, `production.env`)
## --------------------
## APPLICATION SETTINGS
## --------------------
## Uncomment the Rails environment that this `.env` file configures
RAILS_ENV=development
# RAILS_ENV=staging
# RAILS_ENV=production
## Create a secret key using `rake secret` at the root of your app.
## Do not keep production secrets in the unencrypted secrets file.
SECRET_KEY_BASE=CHANGEME
MAX_PERFORMANCE_CACHE_SIZE=8MB
## For localhost development, use full path. For AWS S3, use just `authorities`.
AUTHORITIES_PATH=/path/to/files/for/config/authorities
# AUTHORITIES_PATH=authorities
## --------------------
## AUTHORITY SETTINGS
## --------------------
## DISCOGS Connection (uncomment and update if connecting to DISCOGS authority)
# DISCOGS_KEY=CHANGEME
# DISCOGS_SECRET=CHANGEME
## --------------------
## DATABASE SETTINGS
## --------------------
## Database Connection
## * Uncomment the MYSQL_DATABASE based on the RAILS_ENV.
## * Uncomment `qa_server` for production.
## * Be sure that MYSQL_DATABASE_NAME_PREFIX matches the prefix used in MYSQL_DATABASE
MYSQL_DATABASE=qa_server_development
# MYSQL_DATABASE=qa_server_staging
# MYSQL_DATABASE=qa_server
MYSQL_DATABASE_NAME_PREFIX=qa_server
## DO NOT CHANGE THE MYSQL_HOST OR MYSQL_PORT VALUE
## You can change MYSQL_POOL
MYSQL_HOST=qa-mariadb
MYSQL_PORT=3306
MYSQL_POOL=5
## Database Users
MYSQL_USER=CHANGEME
MYSQL_PASSWORD=CHANGEME
MYSQL_ROOT_PASSWORD=CHANGEME
## --------------------
## QA_SERVER CUSTOMIZATIONS
## --------------------
PREFERRED_TIME_ZONE_NAME=Eastern Time (US & Canada)
DISPLAY_HISTORICAL_DATA=true
HISTORICAL_DATA_DEFAULT_TIME_PERIOD=month
DISPLAY_PERFORMANCE_GRAPH=false
DISPLAY_PERFORMANCE_DATATABLE=false
PERFORMANCE_DATA_DEFAULT_TIME_PERIOD=month
SUPPRESS_PERFORMANCE_LOGGING=true
MONITOR_STATUS_LOGGING_ENABLED=false
## --------------------
## QA CUSTOMIZATIONS
## --------------------
ENABLE_CORS_HEADERS=true
DEFAULT_LANGUAGE=:en
SUPPRESS_IP_DATA_FROM_LOG=true
## Used to control launch of long-running processes from the browser.
RELOAD_TOKEN=CHANGEME