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

20 lines
510 B
Plaintext

const database = "{{database}}"
const adminSecret = "{{adminSecret}}"
const cookieKey1 = "{{cookieKey1}}"
const cookieKey2 = "{{cookieKey2}}"
const clientId = "{{clientId}}"
const couchDBConnectionString = "{{couchDBConnectionString}}"
module.exports = () => ({
database,
adminSecret,
couchDBConnectionString,
clientId,
keys: [cookieKey1, cookieKey2],
port: 4001,
latestPackagesFolder: ".",
extraMasterPlugins: {},
customizeMaster: appDefinition => appDefinition,
useAppRootPath: true,
})