template.json 1.7 KB

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