-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.config.js
58 lines (51 loc) · 1.12 KB
/
example.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
module.exports = {
/**
* Strings to search for in the target
* @type {Array.<string>}
*/
searchStrings: [
'XXXXXXXXX'
],
/**
* Target URL to load
* @type {string}
*/
url: 'http://example.com',
/**
* CSS selector to scrape content from and
* compare to each member of `searchStrings`
* @type {string}
*/
selector: '.my-class',
/**
* Mailgun API credentials and domain
* @type {Object}
*/
mailgun: {
apiKey: 'key-XXXXXXXXXXXXXXXXXXXXXXX',
domain: 'mydomain.mailgun.org'
},
/**
* Email to send notifications to
* @type {string}
*/
notifyEmail: 'you@yourdomain.com',
/**
* Email to send notifications from
* @type {string}
*/
notifyFrom: 'Scraper Watcher <scraperwatcher@yourdomain.com>',
/**
* Run the scraper on this schedule.
* Accepts any valid schedule to pass into `node-schedule` module.
* @see https://github.com/node-schedule/node-schedule
* @type {mixed}
*/
schedule: '* */5 * * * *',
/**
* Whether to send notifications if the target
* does NOT match any `searchStrings`
* @type {boolean}
*/
debug: false,
};