template.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. "mail": {
  49. "from": "Musare <noreply@localhost>"
  50. },
  51. "redis": {
  52. "url": "redis://redis:6379/0",
  53. "password": "PASSWORD"
  54. },
  55. "mongo": {
  56. "url": "mongodb://musare:OTHER_PASSWORD_HERE@mongo:27017/musare"
  57. },
  58. "cookie": {
  59. "domain": "localhost",
  60. "secure": false,
  61. "SIDname": "SID"
  62. },
  63. "blacklistedCommunityStationNames": [
  64. "musare"
  65. ],
  66. "featuredPlaylists": [],
  67. "skipConfigVersionCheck": false,
  68. "skipDbDocumentsVersionCheck": false,
  69. "debug": {
  70. "stationIssue": false,
  71. "traceUnhandledPromises": false,
  72. "captureJobs": []
  73. },
  74. "defaultLogging": {
  75. "hideType": [
  76. "INFO"
  77. ],
  78. "blacklistedTerms": []
  79. },
  80. "customLoggingPerModule": {
  81. // "cache": {
  82. // "hideType": [
  83. // ],
  84. // "blacklistedTerms": []
  85. // },
  86. "migration": {
  87. "hideType": [],
  88. "blacklistedTerms": [
  89. "Ran job",
  90. "Running job",
  91. "Queuing job",
  92. "Pausing job",
  93. "is queued",
  94. "is re-queued",
  95. "Requeing"
  96. ]
  97. }
  98. },
  99. "configVersion": 9
  100. }