1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00
budibase/packages/server/config.contributors.js

17 lines
329 B
JavaScript
Raw Normal View History

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