add npm script for sending daily notifications
This commit is contained in:
8
app/npmScripts/npmDailyNotify.js
Normal file
8
app/npmScripts/npmDailyNotify.js
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
"use strict";
|
||||||
|
const {
|
||||||
|
notifyRequestsWithDailyOption
|
||||||
|
} = require("../services/notificationService");
|
||||||
|
|
||||||
|
(async () => {
|
||||||
|
await notifyRequestsWithDailyOption();
|
||||||
|
})();
|
||||||
@@ -12,6 +12,7 @@
|
|||||||
"docker-start": "docker start pg_marketalerts",
|
"docker-start": "docker start pg_marketalerts",
|
||||||
"docker-stop": "docker stop pg_marketalerts",
|
"docker-stop": "docker stop pg_marketalerts",
|
||||||
"crawl": "cd app/crawler && node npmCrawl.js",
|
"crawl": "cd app/crawler && node npmCrawl.js",
|
||||||
|
"daily-notify": "cd app/npmScripts && node npmDailyNotify.js",
|
||||||
"test-search": "cd test && node searchTest.js",
|
"test-search": "cd test && node searchTest.js",
|
||||||
"test-olx-scraper": "cd test && node olxScrapeTest.js"
|
"test-olx-scraper": "cd test && node olxScrapeTest.js"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user