You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can use npx as well if you just want to test a CLI command
11
+
4
12
# Usage
5
13
6
14
## Create a leaderboard of github contributors for all the repos of a user/org
7
15
(Contributor with highest # of contributions at the top)
8
16
9
-
Run `node contributors.js` from your terminal
17
+
### Using CLI
18
+
19
+
Run `open-community-kit yourGithubOrgName` from your terminal
20
+
21
+
Note: You can also use the shorthand `ock` in place of `open-commmunity-kit` i.e.
22
+
23
+
```
24
+
ock yourGitHubOrgName
25
+
```
10
26
11
27
This will
12
-
* Fetch data from Github APIs and prepare a leaderboard of all the contributors to (default "Git-Commit-Show" org) the user or org you mention in REPO_OWNER variable inside `contributors.js`
28
+
* Fetch data from Github APIs and prepare a leaderboard of all the contributors to public repositories of your GitHub organization/user accout
13
29
* Save the leaderboard in a csv file in the same folder
14
30
15
-
You will hit the API limits soon. To increase API limits, add GITHUB_PERSONAL_TOKEN in `contributors.js`
31
+
You will hit the API limits soon. **To increase API limits**, add [`GITHUB_PERSONAL_TOKEN`](https://github.com/settings/tokens) as well in the arguments i.e.
If you are going to use this command frequently, you might not want to set organization name and personal token again and again. Instead, you can set following environment variables and then you don't need to pass those variables as CLI arguments or function parameters
49
+
50
+
```
51
+
# Set these variables in the environment to avoid repeatedly specifying these variables
0 commit comments