template.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. "rateLimit": 500,
  16. "requestTimeout": 5000
  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. "http://192.168.99.100",
  37. "http://dev.musare.com"
  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. "skipConfigVersionCheck": false,
  63. "skipDbDocumentsVersionCheck": false,
  64. "debug": {
  65. "stationIssue": false,
  66. "traceUnhandledPromises": false,
  67. "captureJobs": []
  68. },
  69. "defaultLogging": {
  70. "hideType": [
  71. "INFO"
  72. ],
  73. "blacklistedTerms": [
  74. ]
  75. },
  76. "customLoggingPerModule": {
  77. // "cache": {
  78. // "hideType": [
  79. // ],
  80. // "blacklistedTerms": []
  81. // },
  82. "migration": {
  83. "hideType": [
  84. ],
  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": 2
  97. }