default.js.dist 733 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /**
  2. * default config
  3. */
  4. module.exports = {
  5. server: {
  6. port: 3000
  7. },
  8. app: {
  9. title: 'Crocos Wiki'
  10. },
  11. security: {
  12. confidential: '',
  13. passwordSeed: "j9a5gt", // please change here
  14. registrationMode: 'Restricted', // Open, Restricted, Closed
  15. registrationWhiteList: []
  16. },
  17. aws: {
  18. bucket: 'crowi',
  19. region: 'ap-northeast-1',
  20. accessKeyId: '',
  21. secretAccessKey: ''
  22. },
  23. mongodb: {
  24. host: 'localhost',
  25. dbname: 'crowi',
  26. user: '',
  27. password: ''
  28. },
  29. searcher: {
  30. url: 'https:// ...' // crocos-wikis
  31. },
  32. google: {
  33. clientId: '',
  34. clientSecret: ''
  35. },
  36. facebook: {
  37. appId: '',
  38. secret: ''
  39. },
  40. session: {
  41. secret: 'please input here some string',
  42. }
  43. }