default.js.dist 608 B

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