This repository has been archived by the owner on Aug 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.development.env
77 lines (58 loc) · 2.15 KB
/
.development.env
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
77
# Docker compose name prefix
COMPOSE_PROJECT_NAME=headbanger
# ---------------------------------------------------------------------------------------------------------------------
# General
# ---------------------------------------------------------------------------------------------------------------------
# Rails
RAILS_ENV=development
RAILS_LOG_TO_STDOUT=1
# Generate a secret using `rails secret`
SECRET_KEY_BASE=mysecretkeybase
# App email
APP_EMAIL=my@app.com
# App host
APP_HOST=myapp.com
# Database credentials
#PG_HOST=postgres
#PG_USER=postgres
#PG_PASSWORD=postgres
#PG_DATABASE=headbanger_development
# Sentry error tracking
#RAILS_APP_SENTRY_DSN=
#VUE_APP_SENTRY_DSN=
# Server instance name
#VUE_APP_INSTANCE=headbanger
# ---------------------------------------------------------------------------------------------------------------------
# Email
# ---------------------------------------------------------------------------------------------------------------------
#SMTP_HOST=
#SMTP_PORT=
#SMTP_DOMAIN=
#SMTP_USERNAME=
#SMTP_PASSWORD=
#SMTP_FROM=
# ---------------------------------------------------------------------------------------------------------------------
# Data sources
# ---------------------------------------------------------------------------------------------------------------------
# Metal Archives endpoint (overrides default)
#MA_ENDPOINT=https://www.metal-archives.com
#MA_ENDPOINT_USER=my_user
#MA_ENDPOINT_PASSWORD=my_password
# MusicBrainz database configuration (overrides default)
#MB_HOST=postgres
#MB_USER=postgres
#MB_PASSWORD=postgres
#MB_DATABASE=musicbrainz
# Allow HTTP requests to hosts
#WEBMOCK_ALLOW_HOST=
# ---------------------------------------------------------------------------------------------------------------------
# Data
# ---------------------------------------------------------------------------------------------------------------------
# Period of data validity (in days)
#HB_DATA_EXPIRES_IN=7
# Number of objects synced at the same time
#HB_SYNC_LIMIT=5
# Interval between periodic synchronizations (in seconds)
#HB_SYNC_INTERVAL=30
# Number of recommendations generated nightly
#HB_RECOMMENDATION_LIMIT=10