| 1234567891011121314151617181920212223242526272829303132333435 |
- /**
- * default config
- */
- module.exports = {
- app: {
- title: 'Crocos Wiki'
- },
- security: {
- confidential: '',
- passwordSeed: "j9a5gt", // please change here
- registrationMode: 'Restricted', // Open, Restricted, Closed
- registrationWhiteList: []
- },
- aws: {
- bucket: 'crowi',
- region: 'ap-northeast-1',
- accessKeyId: '',
- secretAccessKey: ''
- },
- searcher: {
- url: 'https:// ...' // crocos-wikis
- },
- google: {
- clientId: '',
- clientSecret: ''
- },
- facebook: {
- appId: '',
- secret: ''
- },
- session: {
- secret: 'please input here some string',
- }
- }
|