A summary showcase of all your time spent during the MLH Fellowship.
Create a shareable link to display your contributions during the Fellowship on your resume or your website!
-
A personalized page created for every fellow.
-
Total lines of code written, commits, and issues participated in.
-
Languages used in the respective fellow's projects
-
Your performance ratio, like how many PRs were merged compared to total PRs opened by the fellow.
-
and other awesome statistics!
Gabriel Cruz |
Kartik Choudhary |
Cathal O'Callaghan |
Sebastian Crossa |
To run the frontend locally, run the following commands in order (Assumed you have NPM or Yarn installed on your machine)
yarn
or npm install
yarn dev
or npm run dev
- To run the backend you will need to export your GitHub personal access token and your secret to be used in ensuring that bots aren't pinging your server and using up your credits. To do so export them like so:
export GRAPHQL_TOKEN=[your github personal access token]
export secretKey=[your secret key]
Then run the server with cd backend/ && go run main.go