1
0
Fork 0
mirror of synced 2024-06-20 19:30:28 +12:00
budibase/packages/worker/src/db/index.js

25 lines
530 B
JavaScript
Raw Normal View History

const PouchDB = require("pouchdb")
const allDbs = require("pouchdb-all-dbs")
const env = require("../environment")
// level option is purely for testing (development)
2021-03-23 05:18:29 +13:00
const COUCH_DB_URL = env.COUCH_DB_URL || "http://localhost:10000/db/"
let POUCH_DB_DEFAULTS = {
prefix: COUCH_DB_URL,
}
if (env.isTest()) {
PouchDB.plugin(require("pouchdb-adapter-memory"))
POUCH_DB_DEFAULTS = {
prefix: undefined,
adapter: "memory",
}
}
const Pouch = PouchDB.defaults(POUCH_DB_DEFAULTS)
allDbs(Pouch)
2021-01-15 06:02:05 +13:00
module.exports = Pouch