template.json 1.0 KB

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