template.json 1.6 KB

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