17 lines
312 B
TypeScript
17 lines
312 B
TypeScript
import * as core from "@budibase/backend-core"
|
|
import env from "../environment"
|
|
|
|
export function init() {
|
|
const dbConfig: any = {
|
|
replication: true,
|
|
find: true,
|
|
}
|
|
|
|
if (env.isTest() && !env.COUCH_DB_URL) {
|
|
dbConfig.inMemory = true
|
|
dbConfig.allDbs = true
|
|
}
|
|
|
|
core.init({ db: dbConfig })
|
|
}
|