lwinkyawmyat / hacktoberfest-checker

πŸŽƒ Check how you're doing in hacktoberfest

Home Page:https://hacktoberfestchecker.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hacktoberfest Checker

Build Status

Useful checker web app to see how close you are to achieving the requirements for a free t-shirt as part of Hacktoberfest.

https://hacktoberfestchecker.herokuapp.com/

Screenshot

2017!

I've stripped the app right back this year with a small lick of paint to match the new colour scheme. I really like the idea of it being a basic project that beginners can contribute to so wanted to keep it simple.

I have added some tickets so please take a look if you'd like to contribute or feel free to propose any ideas you may have.

Happy hacking!

Running the app

  • Generate a GitHub personal access token to ensure you don't get rate limited as often.

  • Create a .env file containing the token (see .env.dist) or...

  • Export the GitHub token as an environment variable for Node.js to use.

    • Mac/Linux: export GITHUB_TOKEN=YOUR_TOKEN
    • Windows (cmd.exe): set GITHUB_TOKEN=YOUR TOKEN
    • Windows (Powershell): $env:GITHUB_TOKEN=YOUR TOKEN
  • npm install

  • npm start

  • Point browser to localhost:5000

Running the app within docker

As an alternative to the section above, you can run the app within a docker container.

  • docker build -t hacktoberfest-checker .

  • docker run -p 5000:5000 -e "GITHUB_TOKEN=YOUR_TOKEN" hacktoberfest-checker

License

MIT Β© 2015-2017 Ian Jenkins

About

πŸŽƒ Check how you're doing in hacktoberfest

https://hacktoberfestchecker.herokuapp.com/

License:MIT License


Languages

Language:JavaScript 55.2%Language:HTML 39.0%Language:CSS 5.8%