forked from PTCE-Public/tvseries-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
41 lines (41 loc) · 1.25 KB
/
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
module.exports = {
master: true,
port: 5000,
workers: 2,
scrapeTime: '00 00 * * * *',
scrapeTtl: 1000 * 60 * 60 * 10,
pageSize: 50,
serverName: 'serv01',
tempDir: './tmp',
traktKey: '70c43f8f4c0de74a33ac1e66b6067f11d14ad13e33cd4ebd08860ba8be014907',
dbHosts: [
'localhost'
],
map: {
'louie': 'louie-2010',
'battlestar-galactica': 'battlestar-galactica-2003',
'the-killing': 'the-killing-us',
'hawaii-five-0-2010': 'hawaii-fiveo-2010',
'the-goldbergs': 'the-goldbergs-2013',
'vikings-us': 'vikings',
'resurrection-us': 'resurrection',
'golden-boy': 'golden-boy-2013',
'the-office': 'the-office-us',
'the-fosters': 'the-fosters-2013',
'brooklyn-nine-nine': 'brooklyn-ninenine',
'cracked': 'cracked-2013',
'the-good-guys': 'the-good-guys-2010',
'black-box': 'the-black-box',
'hank': 'hank-2009',
'legit': 'legit-2013',
'power-2014': 'power',
'scandal-us': 'scandal-2012',
'reign': 'reign-2013',
'10-oclock-live': '10-o-clock-live',
'marvels-agent-carter': 'marvel-s-agent-carter',
'marvels-agents-of-shield': 'marvel-s-agents-of-s-h-i-e-l-d',
'marvels-avengers-assemble': 'marvel-s-avengers-assemble',
'marvels-daredevil': 'marvel-s-daredevil',
'marvels-guardians-of-the-galaxy': 'marvel-s-guardians-of-the-galaxy'
}
};