Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/r00tman/ghview

View your GitHub traffic stats in terminal for all repos at once
https://github.com/r00tman/ghview

analytics clojure github github-api

Last synced: about 2 months ago
JSON representation

View your GitHub traffic stats in terminal for all repos at once

Awesome Lists containing this project

README

        

# ghview

View your GitHub traffic stats in terminal for all repos at once.

## Getting Started

You need to create `src/ghview/config.clj` with following content

```clojure
(ns ghview.config)

(def token "your github token")
(def auth {"Authorization" (clojure.string/join ["token " token])})
(def userUrl "https://api.github.com/users/yourName")
```

Now, it's ready to use:

```shell
$ lein run # shows your view stats
$ lein run views # same
$ lein run clones # shows your clone stats
```