rethinkdbdash
Version:
A Node.js driver for RethinkDB with promises and a connection pool
14 lines (13 loc) • 386 B
JavaScript
module.exports = {
host: process.env['WERCKER_RETHINKDB_HOST'] || 'localhost',
port: parseInt(process.env['WERCKER_RETHINKDB_PORT'], 10) || 28015,
authKey: '',
buffer: 2,
max: 5,
fake_server: {
host: process.env['WERCKER_RETHINKDB_HOST'] || 'localhost',
port: parseInt(process.env['WERCKER_RETHINKDB_PORT'], 10)+1 || 28016,
},
discovery: false,
silent: true
}