2019-06-14 11:05:46 +02:00
|
|
|
module.exports = () => ({
|
2020-02-03 10:24:25 +01:00
|
|
|
datastore: "local",
|
|
|
|
datastoreConfig: {
|
|
|
|
rootPath: "./myapps/.data",
|
|
|
|
},
|
|
|
|
keys: ["secret1", "secret2"],
|
|
|
|
port: 4001,
|
|
|
|
latestPackagesFolder: "./myapps",
|
|
|
|
extraMasterPlugins: {},
|
|
|
|
dev: true,
|
|
|
|
customizeMaster: appDefinition => appDefinition,
|
|
|
|
useAppRootPath: true,
|
2019-09-03 11:42:19 +02:00
|
|
|
})
|