template.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "mode": "development",
  3. "secret": "default",
  4. "domain": "http://localhost",
  5. "frontendPort": 80,
  6. "serverDomain": "http://localhost:8080",
  7. "serverPort": 8080,
  8. "registrationDisabled": true,
  9. "isDocker": true,
  10. "fancyConsole": true,
  11. "apis": {
  12. "youtube": {
  13. "key": ""
  14. },
  15. "recaptcha": {
  16. "secret": "",
  17. "enabled": false
  18. },
  19. "github": {
  20. "client": "",
  21. "secret": "",
  22. "redirect_uri": ""
  23. },
  24. "mailgun": {
  25. "key": "",
  26. "domain": "",
  27. "enabled": false
  28. },
  29. "discogs": {
  30. "client": "",
  31. "secret": "",
  32. "enabled": false
  33. }
  34. },
  35. "cors": {
  36. "origin": [
  37. "http://localhost",
  38. "http://192.168.99.100",
  39. "http://dev.musare.com"
  40. ]
  41. },
  42. "redis": {
  43. "url": "redis://redis:6379/0",
  44. "password": "PASSWORD"
  45. },
  46. "mongo": {
  47. "url": "mongodb://musare:OTHER_PASSWORD_HERE@mongo:27017/musare"
  48. },
  49. "cookie": {
  50. "domain": "localhost",
  51. "secure": false,
  52. "SIDname": "SID"
  53. },
  54. "debug": {
  55. "stationIssue": false,
  56. "traceUnhandledPromises": false,
  57. "captureJobs": []
  58. },
  59. "defaultLogging": {
  60. "hideType": [
  61. "INFO"
  62. ],
  63. "blacklistedTerms": [
  64. ]
  65. },
  66. "customLoggingPerModule": {
  67. // "cache": {
  68. // "hideType": [
  69. // ],
  70. // "blacklistedTerms": []
  71. // }
  72. }
  73. }