123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- {
- "mode": "development",
- "migration": false,
- "secret": "default",
- "domain": "http://localhost",
- "frontendPort": 80,
- "serverDomain": "http://localhost/backend",
- "serverPort": 8080,
- "registrationDisabled": true,
- "sendDataRequestEmails": true,
- "apis": {
- "youtube": {
- "key": "",
- "rateLimit": 500,
- "requestTimeout": 5000,
- "retryAmount": 2,
- "quotas": [
- {
- "type": "QUERIES_PER_DAY",
- "title": "Queries Per Day",
- "limit": 10000
- },
- {
- "type": "QUERIES_PER_MINUTE",
- "title": "Queries Per Minute",
- "limit": 1800000
- },
- {
- "type": "QUERIES_PER_100_SECONDS",
- "title": "Queries Per 100 Seconds",
- "limit": 3000000
- }
- ]
- },
- "recaptcha": {
- "secret": "",
- "enabled": false
- },
- "github": {
- "enabled": false,
- "client": "",
- "secret": "",
- "redirect_uri": ""
- },
- "discogs": {
- "client": "",
- "secret": "",
- "enabled": false
- }
- },
- "cors": {
- "origin": [
- "http://localhost"
- ]
- },
- "smtp": {
- "host": "smtp.mailgun.org",
- "port": 587,
- "auth": {
- "user": "",
- "pass": ""
- },
- "secure": false,
- "enabled": false
- },
- "mail": {
- "from": "Musare <noreply@localhost>"
- },
- "redis": {
- "url": "redis://redis:6379/0",
- "password": "PASSWORD"
- },
- "mongo": {
- "url": "mongodb://musare:OTHER_PASSWORD_HERE@mongo:27017/musare"
- },
- "cookie": {
- "domain": "localhost",
- "secure": false,
- "SIDname": "SID"
- },
- "blacklistedCommunityStationNames": [
- "musare"
- ],
- "featuredPlaylists": [],
- "skipConfigVersionCheck": false,
- "skipDbDocumentsVersionCheck": false,
- "debug": {
- "stationIssue": false,
- "traceUnhandledPromises": false,
- "captureJobs": []
- },
- "defaultLogging": {
- "hideType": [
- "INFO"
- ],
- "blacklistedTerms": []
- },
- "customLoggingPerModule": {
- // "cache": {
- // "hideType": [
- // ],
- // "blacklistedTerms": []
- // },
- "migration": {
- "hideType": [],
- "blacklistedTerms": [
- "Ran job",
- "Running job",
- "Queuing job",
- "Pausing job",
- "is queued",
- "is re-queued",
- "Requeing"
- ]
- }
- },
- "configVersion": 11
- }
|