{"id":20551665,"url":"https://github.com/do-community/hacktober-board","last_synced_at":"2025-04-14T11:32:04.836Z","repository":{"id":42952996,"uuid":"211291585","full_name":"do-community/hacktober-board","owner":"do-community","description":"Hacktoberfest Board","archived":false,"fork":false,"pushed_at":"2023-02-02T07:45:02.000Z","size":403,"stargazers_count":5,"open_issues_count":3,"forks_count":8,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-28T00:44:09.303Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://hacktober-board.com","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/do-community.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-09-27T10:08:42.000Z","updated_at":"2025-02-03T15:17:42.000Z","dependencies_parsed_at":"2024-11-16T02:33:02.673Z","dependency_job_id":"02863375-17aa-4b6a-b384-45be98eb6829","html_url":"https://github.com/do-community/hacktober-board","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/do-community%2Fhacktober-board","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/do-community%2Fhacktober-board/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/do-community%2Fhacktober-board/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/do-community%2Fhacktober-board/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/do-community","download_url":"https://codeload.github.com/do-community/hacktober-board/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248871885,"owners_count":21175312,"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":[],"created_at":"2024-11-16T02:32:55.395Z","updated_at":"2025-04-14T11:32:04.808Z","avatar_url":"https://github.com/do-community.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Hacktober Board\n\nHacktober-board is an unofficial **Open Issues Board** for [Hacktoberfest](https://digitalocean.com). This project is built with [Laravel](https://laravel.com).\n\nIt is intended to help users, especially beginners, finding issues they can contribute to in order to participate in Hacktoberfest.\n\n## Setting Up a Dev Environment\n\n\nA Docker dev environment is included. You'll need **Docker** and **Docker Compose** installed. To set these up, you can follow [this tutorial](https://www.digitalocean.com/community/tutorials/how-to-install-docker-compose-on-ubuntu-18-04).\n\n---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n### Fork and Clone\n\nIf you are planning to contribute, you will need to:\n1) fork this repository in GitHub\n1) create a local clone of your fork.\n\nIf you're not familiar with this process, [click here for the really detailed version](https://help.github.com/en/github/getting-started-with-github/fork-a-repo).\n\nIf you're not planning to contribute and just want to play with hacktober-board in a local dev environment, you can simply clone this repo\n\n### Running the App on Docker\n\nFirst, you need a `.env` file. If you have a particular need to customize your `.env` you may do so, but for most developers you can just use `.env.example`. Run this in your project root (where you cloned the repo):\n```shell\ncp .env.example .env\n```\n\nNow get your dev environment up and running by bringing up the docker containers:\n```shell\ndocker-compose up\n```\n\nWhen the containers are up, you need to create a new MySQL user by logging in the container:\n\n```shell\ndocker-compose exec db bash\n```\n\nLog into MySQL:\n\n```shell\nmysql -u root -p\n```\n\nThe root MySQL password for the `db` container is `password`.\n\nThen, create a new user while granting permissions to the `hacktober` database, and flush privileges:\n\n```mysql\nGRANT ALL ON hacktober.* TO 'hacktober-user'@'%' IDENTIFIED BY 'password';\nFLUSH PRIVILEGES;\n```\n\nExit the MySQL prompt and the container, coming back to your regular shell.\n\nTo create the database tables, run migrations inside the container:\n\n```shell\ndocker-compose exec app php artisan migrate\n```\n\n\nTo fill the database with sample data, run the `db:seed` command:\n\n```shell\ndocker-compose exec app php artisan db:seed\n```\n\n\nTo import real issues from Github, you'll need to define a Github API Token in the `.env` file. Look for the variable `GITHUB_API_TOKEN`.\n\nAfter setting up the API key, you can import issues with:\n\n```shell\ndocker-compose exec app php artisan hacktober:fetch\n```\n\nThis will populate the database with real issues from Github.\n\n## About\n\nHacktober-Board was initially created at the internal [DigitalOcean](https://digitalocean.com) Hackaton a.k.a. Shark-a-Hack, September 2019 edition.\n\nThe front-end was designed by [Eileen Ani](https://github.com/eileenani) based on the official Hacktoberfest page.\n\n## Contributing\n\nContributions are welcome. Please create an issue or assign yourself an existing issue so everybody knows what is taken. This can be as easy as leaving a comment like \"I'll grab this one\" in the issue you want to work on :)\n\nIf you are new to open source and Git, you can check this excellent series on [How to Contribute to Open Source](https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source) by [Lisa Tagliaferri](https://twitter.com/lisaironcutter) on the DigitalOcean Community.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdo-community%2Fhacktober-board","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdo-community%2Fhacktober-board","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdo-community%2Fhacktober-board/lists"}