template.json 1.8 KB

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