template.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. "mailgun": {
  26. "key": "",
  27. "domain": "",
  28. "enabled": false
  29. },
  30. "discogs": {
  31. "client": "",
  32. "secret": "",
  33. "enabled": false
  34. }
  35. },
  36. "cors": {
  37. "origin": [
  38. "http://localhost",
  39. "http://192.168.99.100",
  40. "http://dev.musare.com"
  41. ]
  42. },
  43. "redis": {
  44. "url": "redis://redis:6379/0",
  45. "password": "PASSWORD"
  46. },
  47. "mongo": {
  48. "url": "mongodb://musare:OTHER_PASSWORD_HERE@mongo:27017/musare"
  49. },
  50. "cookie": {
  51. "domain": "localhost",
  52. "secure": false,
  53. "SIDname": "SID"
  54. },
  55. "debug": {
  56. "stationIssue": false,
  57. "traceUnhandledPromises": false,
  58. "captureJobs": []
  59. },
  60. "defaultLogging": {
  61. "hideType": [
  62. "INFO"
  63. ],
  64. "blacklistedTerms": [
  65. ]
  66. },
  67. "customLoggingPerModule": {
  68. // "cache": {
  69. // "hideType": [
  70. // ],
  71. // "blacklistedTerms": []
  72. // },
  73. "migration": {
  74. "hideType": [
  75. ],
  76. "blacklistedTerms": [
  77. "Ran job",
  78. "Running job",
  79. "Queuing job",
  80. "Pausing job",
  81. "is queued",
  82. "is re-queued",
  83. "Requeing"
  84. ]
  85. }
  86. }
  87. }