| 1234567891011 |
- process.on("uncaughtException", function (err) {
- console.error('err uncaught Exception : ', err);
- });
- require('./src/database.js').database.initDb()
- .then(() => {
- var server = new (require("./src/httpServ.js").HttpServ)();
- }).catch((err) => {
- console.error("FATAL: cannot init database ", err);
- });
|