this is my code :
const CrawlE = require('crawl-e/v0.5.2')
const debug = require('debug')
let crawlE = new CrawlE({
cinemas: [
{
name: 'Kino Gmunden',
address: 'Theatergasse 7, 4810 Gmunden',
website: 'http://www.kino-gmunden.at/',
phone: '0676 / 88 794 505'
}
],
showtimes: {
url: 'https://www.daskino.at/programm/',
}
})
crawlE.crawl()
i want to add an environment variable Debug=*, how can i set it and make this script run with it ?