Skip to content

theaidem/githubble

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

View github stars / forks in real-time

What Uses?

Frontend

Redux, react, normalizr

Webpack module bundler and Semantic UI components

Backend

Golang 👍

Server-Sent Events sending event streams for clients

How to run localy

Make sure you have Golang and NodeJS installed

Clone the repo:

git clone https://github.com/theaidem/githubble
cd githubble/backend
go get -v .

Generate your personal access token from Github, then Build and run githubble server:

<github_access_token> is Your Personal access token from Github

Copy environment file

cp .env.example .env

and paste your token(s) in this file:

GITHUB_TOKENS = <github_access_token>

and run the commands:

make build && make run

From another terminal window:

cd path/to/githubble/frontend

Install dependencies and run:

npm i
npm start

open localhost:3001