template.json 1.7 KB

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