template.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. "discord": {
  25. "token": "",
  26. "loggingChannel": "",
  27. "loggingServer": ""
  28. },
  29. "mailgun": {
  30. "key": "",
  31. "domain": "",
  32. "enabled": false
  33. },
  34. "spotify": {
  35. "client": "",
  36. "secret": "",
  37. "enabled": false
  38. },
  39. "discogs": {
  40. "client": "",
  41. "secret": "",
  42. "enabled": false
  43. }
  44. },
  45. "cors": {
  46. "origin": [
  47. "http://localhost",
  48. "http://192.168.99.100",
  49. "http://dev.musare.com"
  50. ]
  51. },
  52. "redis": {
  53. "url": "redis://redis:6379/0",
  54. "password": "PASSWORD"
  55. },
  56. "mongo": {
  57. "url": "mongodb://musare:OTHER_PASSWORD_HERE@mongo:27017/musare"
  58. },
  59. "cookie": {
  60. "domain": "localhost",
  61. "secure": false,
  62. "SIDname": "SID"
  63. },
  64. "debug": {
  65. "stationIssue": false,
  66. "traceUnhandledPromises": false,
  67. "captureJobs": []
  68. }
  69. }