-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
43 lines (42 loc) · 951 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
'use strict';
/**
* Retrieve the inquirer definition for xcraft-core-etc
*/
module.exports = [
{
type: 'input',
name: 'entityStorageProvider',
message: 'Goblin providing storage quests',
default: 'goblin-rethink',
},
{
type: 'input',
name: 'entityCheckerPolicy',
message: 'define policy loose|strict',
default: 'loose',
},
{
type: 'input',
name: 'mustExistPolicy',
message: 'define policy loose|strict',
default: 'loose',
},
{
type: 'input',
name: 'entityStorageServicePoolSize',
message: 'Number of goblin storage instanciated and available in pool',
default: 10,
},
{
type: 'confirm',
name: 'enableUndoEditFlow',
message: 'User need to submit changes, and can rollback editions',
default: false,
},
{
type: 'confirm',
name: 'enableMultiLanguageIndex',
message: 'Define if indexer must use nabu locales',
default: false,
},
];