It is the leaderboard of the contributors of KUOSC and KUCC open source projects.
bun install
Make sure to add GitHub token as your environment variable. Please check .env.example
.
For the first time usage, please fetch the data. To fetch the data,
bun fetch
When you serve, the contributions are fetch once a day. To serve, run
bun serve
This API accepts any route as long as it's a GET request.
GET /{any_route}
{
"success": true,
"message": "Success",
"data": {
"docs": [
{
"_id": {
"userId": 96732471,
"username": "abhiyandhakal"
},
"types": [
{
"type": "commit",
"count": 38
},
{
"type": "issue",
"count": 6
}
],
"total": 44
}
],
"totalDocs": 22,
"limit": 22,
"page": 1,
"totalPages": 1,
"pagingCounter": 1,
"hasPrevPage": false,
"hasNextPage": false,
"prevPage": null,
"nextPage": null
}
}
This project was created using bun init
in bun v1.1.0. Bun is a fast all-in-one JavaScript runtime.