mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-27 02:40:39 +01:00
15 lines
319 B
JavaScript
15 lines
319 B
JavaScript
'use strict';
|
|
|
|
var nconf = require('nconf');
|
|
var databaseName = nconf.get('database');
|
|
var winston = require('winston');
|
|
|
|
if (!databaseName) {
|
|
winston.error(new Error('Database type not set! Run ./nodebb setup'));
|
|
process.exit();
|
|
}
|
|
|
|
var primaryDB = require('./database/' + databaseName);
|
|
|
|
module.exports = primaryDB;
|