template.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "mode": "development",
  3. "migration": false,
  4. "secret": "default",
  5. "domain": "http://localhost",
  6. "frontendPort": 80,
  7. "serverDomain": "http://localhost:8080",
  8. "serverPort": 8080,
  9. "registrationDisabled": true,
  10. "isDocker": true,
  11. "fancyConsole": true,
  12. "apis": {
  13. "youtube": {
  14. "key": ""
  15. },
  16. "recaptcha": {
  17. "secret": "",
  18. "enabled": false
  19. },
  20. "github": {
  21. "client": "",
  22. "secret": "",
  23. "redirect_uri": ""
  24. },
  25. "discogs": {
  26. "client": "",
  27. "secret": "",
  28. "enabled": false
  29. }
  30. },
  31. "cors": {
  32. "origin": [
  33. "http://localhost",
  34. "http://192.168.99.100",
  35. "http://dev.musare.com"
  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. },
  74. "customLoggingPerModule": {
  75. // "cache": {
  76. // "hideType": [
  77. // ],
  78. // "blacklistedTerms": []
  79. // },
  80. "migration": {
  81. "hideType": [
  82. ],
  83. "blacklistedTerms": [
  84. "Ran job",
  85. "Running job",
  86. "Queuing job",
  87. "Pausing job",
  88. "is queued",
  89. "is re-queued",
  90. "Requeing"
  91. ]
  92. }
  93. },
  94. "configVersion": 1
  95. }