template.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. "smtp": {
  36. "host": "smtp.mailgun.org",
  37. "port": 587,
  38. "auth": {
  39. "user": "",
  40. "pass": ""
  41. },
  42. "secure": false,
  43. "enabled": false
  44. },
  45. "redis": {
  46. "url": "redis://redis:6379/0",
  47. "password": "PASSWORD"
  48. },
  49. "mongo": {
  50. "url": "mongodb://musare:OTHER_PASSWORD_HERE@mongo:27017/musare"
  51. },
  52. "cookie": {
  53. "domain": "localhost",
  54. "secure": false,
  55. "SIDname": "SID"
  56. },
  57. "skipConfigVersionCheck": false,
  58. "skipDbDocumentsVersionCheck": false,
  59. "debug": {
  60. "stationIssue": false,
  61. "traceUnhandledPromises": false,
  62. "captureJobs": []
  63. },
  64. "defaultLogging": {
  65. "hideType": [
  66. "INFO"
  67. ],
  68. "blacklistedTerms": []
  69. },
  70. "customLoggingPerModule": {
  71. // "cache": {
  72. // "hideType": [
  73. // ],
  74. // "blacklistedTerms": []
  75. // },
  76. "migration": {
  77. "hideType": [],
  78. "blacklistedTerms": [
  79. "Ran job",
  80. "Running job",
  81. "Queuing job",
  82. "Pausing job",
  83. "is queued",
  84. "is re-queued",
  85. "Requeing"
  86. ]
  87. }
  88. },
  89. "configVersion": 6
  90. }