Giter Site home page Giter Site logo

hacktober-board's Introduction

Hacktober Board

Hacktober-board is an unofficial Open Issues Board for Hacktoberfest. This project is built in Laravel using MySQL as database.

It is intended to help users, especially beginners, finding issues they can contribute to in order to participate in Hacktoberfest.

Initially created at the internal DigitalOcean Hackaton a.k.a. Shark-a-Hack, September 2019 edition.

Front-end Design by Eileen Ani.

Setting Up a Dev Environment

A Docker dev environment is included. You'll need Docker and Docker Compose installed.

Running the App on Docker

run Docker Compose with:

docker-compose up

When the containers are up, you need to create a new MySQL user by logging in the container:

docker-compose exec db bash

Log into MySQL:

mysql -u root -p

The root MySQL password for the db container is h4ckt0b3rd3v.

Then, create a new user while granting permissions to the hacktober database, then flush privileges:

GRANT ALL ON hacktober.* TO 'hacktober-user'@'%' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;

Exit the MySQL prompt and the container, coming back to your regular shell.

To create the database tables, run migrations inside the container:

docker-compose exec app php artisan migrate

To 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.

After setting up the API key, you can import issues with:

docker-compose exec app php artisan hacktober:fetch

This will populate the database with real issues from Github.

hacktober-board's People

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.