Live on https://g14a.github.io/gitsee/
git-see is the backend service to visualize Github user and basic repo information of him/her. This can be used as a part of hiring talent into your organization for getting a gist about the candidate. It is built using Go, React along with Github V4 API.
- Clone this repo.
- Add a
.env
file to the project root directly and add a Github token in the following format:GHTOKEN=<your-token>
- Install Go if you already haven't.
- Run
go mod tidy
orgo mod download
- Now
go run main.go
- In another terminal window, clone github.com/g14a/fe-gitsee repo.
- Install
node
if you already haven't. - Run
npm install
inside the root directory. - Once you've done that, run
npm start
in the root directory. - Head to localhost:3000 and check it out.
- Run
docker-compose up
after cloning this repo. Make sure you add an.env
file and append the Github token in the mentioned format above. - Once the containers are fired, head to localhost:80 and voila!!