template.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "mode": "development",
  3. "migration": false,
  4. "secret": "default",
  5. "domain": "http://localhost",
  6. "frontendPort": 80,
  7. "serverDomain": "http://localhost/backend",
  8. "serverPort": 8080,
  9. "registrationDisabled": true,
  10. "hideAutomaticallyRequestedSongs": false,
  11. "hideAnonymousSongs": false,
  12. "sendDataRequestEmails": true,
  13. "apis": {
  14. "youtube": {
  15. "key": "",
  16. "rateLimit": 500,
  17. "requestTimeout": 5000,
  18. "retryAmount": 2
  19. },
  20. "recaptcha": {
  21. "secret": "",
  22. "enabled": false
  23. },
  24. "github": {
  25. "client": "",
  26. "secret": "",
  27. "redirect_uri": ""
  28. },
  29. "discogs": {
  30. "client": "",
  31. "secret": "",
  32. "enabled": false
  33. }
  34. },
  35. "cors": {
  36. "origin": [
  37. "http://localhost"
  38. ]
  39. },
  40. "smtp": {
  41. "host": "smtp.mailgun.org",
  42. "port": 587,
  43. "auth": {
  44. "user": "",
  45. "pass": ""
  46. },
  47. "secure": false,
  48. "enabled": false
  49. },
  50. "redis": {
  51. "url": "redis://redis:6379/0",
  52. "password": "PASSWORD"
  53. },
  54. "mongo": {
  55. "url": "mongodb://musare:OTHER_PASSWORD_HERE@mongo:27017/musare"
  56. },
  57. "cookie": {
  58. "domain": "localhost",
  59. "secure": false,
  60. "SIDname": "SID"
  61. },
  62. "skipConfigVersionCheck": false,
  63. "skipDbDocumentsVersionCheck": false,
  64. "debug": {
  65. "stationIssue": false,
  66. "traceUnhandledPromises": false,
  67. "captureJobs": []
  68. },
  69. "defaultLogging": {
  70. "hideType": [
  71. "INFO"
  72. ],
  73. "blacklistedTerms": []
  74. },
  75. "customLoggingPerModule": {
  76. // "cache": {
  77. // "hideType": [
  78. // ],
  79. // "blacklistedTerms": []
  80. // },
  81. "migration": {
  82. "hideType": [],
  83. "blacklistedTerms": [
  84. "Ran job",
  85. "Running job",
  86. "Queuing job",
  87. "Pausing job",
  88. "is queued",
  89. "is re-queued",
  90. "Requeing"
  91. ]
  92. }
  93. },
  94. "configVersion": 6
  95. }