2019-06-14 11:05:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
module.exports = () => ({
|
|
|
|
datastore: "local",
|
|
|
|
datastoreConfig: {
|
|
|
|
rootPath: "./.data"
|
|
|
|
},
|
|
|
|
keys: ["secret1", "secret2"],
|
2019-06-25 23:48:22 +02:00
|
|
|
port: 4001,
|
|
|
|
latestAppsPath: "./appPackages",
|
2019-06-28 23:59:27 +02:00
|
|
|
extraMasterPlugins: {},
|
2019-06-25 23:48:22 +02:00
|
|
|
customizeMaster: appDefinition => appDefinition
|
2019-06-14 11:05:46 +02:00
|
|
|
})
|