Added send notification service, and queried unsent marketalerts, fixed some issues with crawler, and added proper logging

This commit is contained in:
Nedim Uka
2019-06-25 17:06:07 +02:00
parent 5ffdaef1bf
commit 208faa08df
8 changed files with 123 additions and 35 deletions

View File

@@ -0,0 +1,19 @@
const Promise = require("bluebird");
const db = require("../models/index");
const { allMarketAlerts } = require('../helpers/db/dbHelper');
async function processNotifications() {
try {
const marketAlerts = await allMarketAlerts(false);
console.log(marketAlerts);
process.exit();
} catch (e) {
console.log("NOTIFICATION SERVICE: could not send notifications reason: ", e);
}
}
processNotifications();