summaryrefslogtreecommitdiff
path: root/config.js
blob: 5b35485e46b46e54f4a21806c8acc85b8d2d7822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/node

module.exports = {
  api: {
    baseUrl: 'https://api.dc01.gamelockerapp.com',
    timeout: 5,
    regions: ['sg', 'eu', 'na'],
    rpm: 50,
    modes: ['blitz_pvp_ranked'],
  },
  etl: {
    participant: [ ['Winner', ['attributes', 'stats', 'winner']] ],
    roster: [ ],
    match: [ ],
  },
  reduce: {
    group: ['Actor', 'Talent'],
    sum: ['Level', 'Winner'],
  },
};