mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-10 16:05:49 +01:00
removing leveldb from our dbal
a) It isn't being maintained, especially not by me b) I haven't seen anybody actually interested in this db software so there's no real point in supporting it unless we have a few people who are interested If you ARE interested though - please contact me and we can figure something out in future :)
This commit is contained in:
@@ -15,9 +15,6 @@ var async = require('async'),
|
||||
},
|
||||
"mongo": {
|
||||
"dependencies": ["mongodb", "connect-mongo"]
|
||||
},
|
||||
"level": {
|
||||
"dependencies": ["levelup", "leveldown", "connect-leveldb"]
|
||||
}
|
||||
};
|
||||
|
||||
@@ -161,8 +158,7 @@ function setupConfig(next) {
|
||||
var config = {},
|
||||
redisQuestions = require('./database/redis').questions,
|
||||
mongoQuestions = require('./database/mongo').questions,
|
||||
levelQuestions = require('./database/level').questions,
|
||||
question, x, numQ, allQuestions = questions.main.concat(redisQuestions).concat(mongoQuestions.concat(levelQuestions));
|
||||
question, x, numQ, allQuestions = questions.main.concat(redisQuestions).concat(mongoQuestions);
|
||||
|
||||
for(x=0,numQ=allQuestions.length;x<numQ;x++) {
|
||||
question = allQuestions[x];
|
||||
|
||||
Reference in New Issue
Block a user