template.json 1.5 KB

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