1
0
Fork 0
mirror of synced 2024-07-12 01:36:09 +12:00
budibase/packages/server/config.sample.js

20 lines
417 B
JavaScript
Raw Normal View History

2019-06-14 21:05:46 +12:00
module.exports = () => ({
// the datastore type. should link to a module ...
// ../datastores/datastores/<datastore>.js
datastore: "local",
// a config object passed to the datastore.databaseManager
datastoreConfig: {
rootPath: "./.data"
},
// cookie signing keys,these are secret
keys: ["secret1", "secret1"],
// port for http server to listen on
port: 4001
})