template.json 1.6 KB

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