1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00
budibase/packages/server/config.sample.js
2020-04-24 09:56:39 +01:00

33 lines
1 KiB
JavaScript

module.exports = () => ({
// can be couch - if you have couchdb installed, or pouch for dev
database: "couch",
// not required if using pouch
couchDbConnectionString: "https://username:password@localhost:5984",
// a secret that is used to access admin endpoints
adminSecret: "a_big_long_secret",
// cookie signing keys,these are secret
keys: ["secret1", "secret1"],
// port for http server to listen on
port: 4001,
// path to where your appDefinition etc is stored (dev time)
latestPackagesFolder: "./",
// register plugins for master
extraMasterPlugins: {},
// make modifications to master's appdefinition - e.g. add plugins
customizeMaster: appDefinition => appDefinition,
// false for production - serves builder if true
dev: false,
// flags whethers your apps should make server requests to '/<your app name>/<the route>'
// should only be set to true if you are routed via a domain, and are rewriting
// the "your.domain.com" to "/<your app name>"
useAppRootPath: false,
})