1
0
Fork 0
mirror of synced 2024-06-16 09:25:12 +12:00

conditionally apply username and password to couchdb auth

This commit is contained in:
Martin McKeaveney 2021-08-17 16:48:02 +01:00
parent 31f0c0ba41
commit bcbd40764f
2 changed files with 10 additions and 4 deletions

View file

@ -12,10 +12,13 @@ PouchDB.adapter("writableStream", replicationStream.adapters.writableStream)
let POUCH_DB_DEFAULTS = {
prefix: COUCH_DB_URL,
auth: {
}
if (env.COUCH_DB_USERNAME && env.COUCH_DB_PASSWORD) {
POUCH_DB_DEFAULTS.auth = {
username: env.COUCH_DB_USERNAME,
password: env.COUCH_DB_PASSWORD,
},
}
}
if (env.isTest()) {

View file

@ -7,10 +7,13 @@ const COUCH_DB_URL = env.COUCH_DB_URL || "http://localhost:10000/db/"
let POUCH_DB_DEFAULTS = {
prefix: COUCH_DB_URL,
auth: {
}
if (env.COUCH_DB_USERNAME && env.COUCH_DB_PASSWORD) {
POUCH_DB_DEFAULTS.auth = {
username: env.COUCH_DB_USERNAME,
password: env.COUCH_DB_PASSWORD,
},
}
}
if (env.isTest()) {