template.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. "sendDataRequestEmails": true,
  11. "apis": {
  12. "youtube": {
  13. "key": "",
  14. "rateLimit": 500,
  15. "requestTimeout": 5000,
  16. "retryAmount": 2
  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. "blacklistedCommunityStationNames": [
  61. "musare"
  62. ],
  63. "featuredPlaylists": [],
  64. "skipConfigVersionCheck": false,
  65. "skipDbDocumentsVersionCheck": false,
  66. "debug": {
  67. "stationIssue": false,
  68. "traceUnhandledPromises": false,
  69. "captureJobs": []
  70. },
  71. "defaultLogging": {
  72. "hideType": [
  73. "INFO"
  74. ],
  75. "blacklistedTerms": []
  76. },
  77. "customLoggingPerModule": {
  78. // "cache": {
  79. // "hideType": [
  80. // ],
  81. // "blacklistedTerms": []
  82. // },
  83. "migration": {
  84. "hideType": [],
  85. "blacklistedTerms": [
  86. "Ran job",
  87. "Running job",
  88. "Queuing job",
  89. "Pausing job",
  90. "is queued",
  91. "is re-queued",
  92. "Requeing"
  93. ]
  94. }
  95. },
  96. "configVersion": 9
  97. }