mirror of
https://github.com/YunoHost-Apps/etherpad_ynh.git
synced 2024-09-03 18:36:10 +02:00
90575e5019
Updated 1.5.6.
18 lines
497 B
JavaScript
Executable file
18 lines
497 B
JavaScript
Executable file
require("ep_etherpad-lite/node_modules/npm").load({}, function(er,npm) {
|
|
|
|
process.chdir(npm.root+'/..')
|
|
|
|
var settings = require("ep_etherpad-lite/node/utils/Settings");
|
|
var dirty = require("ep_etherpad-lite/node_modules/ueberDB/node_modules/dirty")('var/dirty.db');
|
|
var db = require("ep_etherpad-lite/node/db/DB");
|
|
|
|
db.init(function() {
|
|
db = db.db;
|
|
dirty.on("load", function() {
|
|
dirty.forEach(function(key, value) {
|
|
db.set(key, value);
|
|
});
|
|
});
|
|
});
|
|
|
|
});
|