{"id":13759131,"url":"https://github.com/jenkoian/hacktoberfest-checker","last_synced_at":"2025-05-10T09:31:56.384Z","repository":{"id":1764167,"uuid":"44237651","full_name":"jenkoian/hacktoberfest-checker","owner":"jenkoian","description":"🎃 Check how you're doing in hacktoberfest","archived":true,"fork":false,"pushed_at":"2022-11-21T12:41:59.000Z","size":18014,"stargazers_count":761,"open_issues_count":10,"forks_count":362,"subscribers_count":13,"default_branch":"master","last_synced_at":"2024-08-03T13:02:42.569Z","etag":null,"topics":["hacktober","hacktoberfest","hacktoberfest-checker","nodejs","reactjs","tailwindcss"],"latest_commit_sha":null,"homepage":"https://hacktoberfestchecker.jenko.me","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jenkoian.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":"https://paypal.me/jenkoian"}},"created_at":"2015-10-14T09:27:48.000Z","updated_at":"2024-06-30T01:33:49.000Z","dependencies_parsed_at":"2023-01-13T11:22:49.882Z","dependency_job_id":null,"html_url":"https://github.com/jenkoian/hacktoberfest-checker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkoian%2Fhacktoberfest-checker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkoian%2Fhacktoberfest-checker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkoian%2Fhacktoberfest-checker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkoian%2Fhacktoberfest-checker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jenkoian","download_url":"https://codeload.github.com/jenkoian/hacktoberfest-checker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224940803,"owners_count":17395760,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktober","hacktoberfest","hacktoberfest-checker","nodejs","reactjs","tailwindcss"],"created_at":"2024-08-03T13:00:47.040Z","updated_at":"2024-11-16T16:30:31.245Z","avatar_url":"https://github.com/jenkoian.png","language":"JavaScript","funding_links":["https://paypal.me/jenkoian"],"categories":["JavaScript"],"sub_categories":[],"readme":"# Hacktoberfest Checker\n\n:warning: Thanks for the memories, but it's time to sunset this little app, you can read more here: https://jenko.me/hacktoberfest/2022/11/21/hacktoberfest-checking-out\n\n---\n\n[![Build Status](https://img.shields.io/github/workflow/status/jenkoian/hacktoberfest-checker/Build?logo=github)](https://github.com/jenkoian/hacktoberfest-checker/actions?query=workflow%3ABuild)\n![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)\n\nUseful checker web app to see how close you are to achieving the requirements for a free t-shirt as part of [Hacktoberfest](https://hacktoberfest.com/).\n\n[https://hacktoberfestchecker.jenko.me/](https://hacktoberfestchecker.jenko.me/)\n\n![Screenshot](hacktoberfest-checker-2022.png)\n\n## 2022!\n\nWell I've had next to no time to do anything really other than a very light (and probably broken) re-skin.\nAs far as I'm aware nothing has changed in terms of rules this year, so only a re-skin that was required (if there are new rules, feel free to submit a PR - it'll count towards your total!)\n\n### Doesn't DigitalOcean have their progress checker now?\n\nThey do! However, I still think it's worth having a checker that doesn't require auth and allows you to check on your mates (or celebrity developers!).\n\nHappy hacking!\n\n## Requirements\n\n- Node LTS (v10/12/14)\n  \u003e Recommended to use [NVM](https://github.com/creationix/nvm)\n\n## Running the app\n\n- [Generate a GitHub personal access token](https://github.com/settings/tokens/new?scopes=\u0026description=Hacktoberfest%20Checker) to ensure you don't get rate limited as often.\n\n- [Generate a Gitlab personal access token](https://gitlab.com/-/profile/personal_access_tokens?scopes=api\u0026name=Hacktoberfest%20Checker) to ensure gitlab is supported.\n\n- Create a `.env` file using `.env.example` as an example. Or export the GitHub/Gitlab token as an environment variable for Node.js to use:\n\n  - Mac/Linux: `export GITHUB_TOKEN=YOUR_TOKEN; export GITLAB_TOKEN=YOUR_TOKEN`\n  - Windows (cmd.exe): `set GITHUB_TOKEN=YOUR_TOKEN; set GITLAB_TOKEN=YOUR_TOKEN`\n  - Windows (PowerShell): `$env: GITHUB_TOKEN=YOUR_TOKEN; GITLAB_TOKEN=YOUR_TOKEN`\n\n- `$ npm install`\n\n- `$ npm run tailwind-gen`\n\n- `$ npm start`\n\n- Point browser to [localhost:5000](http://localhost:5000)\n\nWant to run the API server and the frontend in their processes? Use this:\n\n```bash\n$ npm run start-frontend\n$ npm run start-server\n```\n\nor in a single command...\n\n```bash\n$ npm run start-development\n```\n\n### Running the app within Docker\n\nAs an alternative to the section above, you can run the app within a Docker container:\n\n- `$ docker build -t hacktoberfest-checker .`\n\n- `$ docker run -p 5000:5000 -e \"GITHUB_TOKEN=YOUR_TOKEN\" hacktoberfest-checker`\n\nor use the docker-compose\n\n- `$ docker-compose up --build`\n\n## Contributing\n\nCheck out the [Contributing guidelines](https://github.com/jenkoian/hacktoberfest-checker/blob/master/CONTRIBUTING.md) to get started on contributing.\n\n## Changing styling\n\nStyling is done through [tailwind](https://tailwindcss.com/) as much as possible, no CSS should be added and class names favoured.\nHowever, there will be occasions where custom CSS is required, in this case you need to edit `style.css`\nand run `npm run tailwind-gen` to generate the new CSS file.\n\n\u003e Note: You should never directly edit `index.css`\n\n## License\n\nMIT © 2015-2021 [Ian Jenkins](https://github.com/jenkoian)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjenkoian%2Fhacktoberfest-checker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjenkoian%2Fhacktoberfest-checker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjenkoian%2Fhacktoberfest-checker/lists"}