Backend for @TheOverseer, the analytics bot at Hack Club
This repository contains the source for @TheOverseer, the analytics bot at Hack Club.
The Overseer is split into
To compute analytics manually, run
yarn start
This produces
20.json
- A sorted array containing the top 20 most active members, names-onlyresults.json
- A sorted array containing all the members, sorted by how active they are. IDs-onlyExample contents of 20.json
:
[
["USERNAME1", 500]
["USERNAME2", 250],
["USERNAME3", 50],
// ...
]
Example contents of results.json
:
[
["USERID1", 500]
["USERID2", 250],
["USERID3", 50],
// ...
]