-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.example.js
32 lines (30 loc) · 1.1 KB
/
config.example.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
/**
* Available Sites:
* prohardver:
* username, password - credentials for the PH! sites
* subsite - PH! flavor in the links: prohardver, mobilarena, itcafe, logout or gamepod
* mobile - set to true if you want mobile-friendly links
* includeRecent - set to true if you want notifications for your recent threads too, not just favorites
*
* Common settings:
* checkInterval - number of minutes to wait between polling the forum
* notifyTo - a single or a list of device identifiers to send pushes to; 'all' and true (boolean) are jokers
*
* Be sure to copy your PushBullet API key from https://pushbullet.com/account!
*/
var Configuration = {
EnabledSites: [
{
'name': 'prohardver',
'username': 'Your Prohardver username',
'password': 'Your Prohardver password',
'checkInterval': 10, // In minutes
'notifyTo': 'all',
'subsite': 'prohardver',
'mobile': false,
'includeRecent': false
}
],
PushBulletApiKey: 'Your PushBullet API key'
};
module.exports = Configuration;