login, readme

This commit is contained in:
life
2015-03-09 15:36:04 +08:00
parent 67f35279ff
commit 67dfd94730
3219 changed files with 109 additions and 551145 deletions

7
node_modules/db.js generated vendored
View File

@@ -6,10 +6,11 @@ var Evt = require('evt');
// var dbPath = require('nw.gui').App.dataPath + '/nedb';
// var dbPath = Evt.getBasePath() + '/Users/life/Library/Application Support/Leanote' + '/nedb';
var dbPath = Evt.getBasePath() + '/nedb';
console.error(dbPath);
// test
if(dbPath.length < 6) {
var dbPath = '/Users/life/Library/Application Support/Leanote' + '/nedb';
// var dbPath = '/Users/life/Library/Application Support/Leanote' + '/nedb';
}
// console.log(dbPath);
@@ -18,7 +19,9 @@ var db = {};
var dbNames = ['notebooks', 'notes', 'users', 'tags', 'images', 'attachs', 'noteHistories', 'g'];
for(var i in dbNames) {
var name = dbNames[i];
db[name] = new Datastore({ filename: path.join(dbPath, name + '.db'), autoload: true });
var p = path.join(dbPath, name + '.db');
console.log(p);
db[name] = new Datastore({ filename: p, autoload: true });
}
module.exports = db;
console.log('db init');