2019-06-14 11:05:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
module.exports = () => ({
|
|
|
|
datastore: "local",
|
|
|
|
datastoreConfig: {
|
2019-11-23 08:28:24 +01:00
|
|
|
rootPath: "./myapps/.data"
|
2019-06-14 11:05:46 +02:00
|
|
|
},
|
|
|
|
keys: ["secret1", "secret2"],
|
2019-06-25 23:48:22 +02:00
|
|
|
port: 4001,
|
2019-11-23 08:28:24 +01:00
|
|
|
latestPackagesFolder: "./myapps",
|
2019-06-28 23:59:27 +02:00
|
|
|
extraMasterPlugins: {},
|
2019-07-13 11:35:57 +02:00
|
|
|
dev:true,
|
2019-09-06 14:04:23 +02:00
|
|
|
customizeMaster: appDefinition => appDefinition,
|
|
|
|
useAppRootPath: true
|
2019-09-03 11:42:19 +02:00
|
|
|
})
|
|
|
|
|