1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00
budibase/packages/server/src/db/client.js

45 lines
1.1 KiB
JavaScript
Raw Normal View History

const PouchDB = require("pouchdb")
2020-09-26 01:47:42 +12:00
const replicationStream = require("pouchdb-replication-stream")
2020-04-25 19:35:34 +12:00
const allDbs = require("pouchdb-all-dbs")
2021-02-02 10:02:54 +13:00
const find = require("pouchdb-find")
2020-05-15 02:12:30 +12:00
const env = require("../environment")
2020-04-08 02:12:08 +12:00
2021-03-23 04:43:26 +13:00
const COUCH_DB_URL = env.COUCH_DB_URL || "http://localhost:10000/db/"
2020-05-15 02:12:30 +12:00
2020-09-26 01:47:42 +12:00
PouchDB.plugin(replicationStream.plugin)
2021-02-02 10:02:54 +13:00
PouchDB.plugin(find)
2020-09-26 01:47:42 +12:00
PouchDB.adapter("writableStream", replicationStream.adapters.writableStream)
2020-05-18 21:28:38 +12:00
let POUCH_DB_DEFAULTS = {
2020-05-18 22:01:09 +12:00
prefix: COUCH_DB_URL,
}
if (env.isTest()) {
2020-05-18 21:28:38 +12:00
PouchDB.plugin(require("pouchdb-adapter-memory"))
POUCH_DB_DEFAULTS = {
prefix: undefined,
2020-05-18 22:01:09 +12:00
adapter: "memory",
}
2020-05-18 21:28:38 +12:00
}
const Pouch = PouchDB.defaults(POUCH_DB_DEFAULTS)
2020-05-07 21:53:34 +12:00
allDbs(Pouch)
// replicate your local levelDB pouch to a running HTTP compliant couch or pouchdb server.
/* istanbul ignore next */
// eslint-disable-next-line no-unused-vars
function replicateLocal() {
2021-05-04 22:32:22 +12:00
Pouch.allDbs().then(dbs => {
for (let db of dbs) {
new Pouch(db).sync(
new PouchDB(`http://127.0.0.1:5984/${db}`, { live: true })
)
}
})
}
2020-11-12 23:41:49 +13:00
// replicateLocal()
module.exports = Pouch