obdfcascrape/lt.js
Martin Donnelly be5d3eae07 init
2019-05-05 20:13:56 +01:00

26 lines
529 B
JavaScript

#!/usr/bin/env node
const CronJob = require('cron').CronJob;
// load env variables from file
require('dotenv').config();
const argv = require('yargs').argv;
const Lithuania = require('./ncas/lt');
async function run() {
const lsScraper = new Lithuania();
if (typeof(process.env.LT_CRON) === 'string' )
new CronJob(process.env.LT_CRON, async () => {
await lsScraper.run();
}, null, true);
if (process.env.SCRAPE_START === lsScraper.id)
await lsScraper.run();
console.log('LT Launched');
}
run();