This little tool helps you to track your Hacktoberfest status.
Hacktoberfest Status Checker is no longer available online.
We're using Travis CI to automatically run tests. Feel free to add some more.
-
Clone the repository
git clone https://github.com/niclasleonbock/hacktoberfest-status.git -
Run
composer installto install composer packages/dependencies -
(Optionally) Run
npm installto install node packages/dependencies -
Create your
.envfile by copying the example provided in the repositorycp .env.example .env -
Run
php artisan key:generateto generate and set an application key -
Run
php artisan migrateto run the migrations -
By running
php artisan serveyou will start the web server, this can be visited from the outputted URL. -
Opening your .env file, set the
GITHUB_CALLBACK_URLvariable to point to the/auth/callbackroute for your instance e.g.http://localhost:8000/auth/callback -
Register a new OAuth application with GitHub, ensuring to fill in the same callback URL specified in your
.envpreviously. -
Once your application is created, you will be given both a client ID and secret. These can then be placed into the relative
GITHUB_CLIENT_IDandGITHUB_CLIENT_SECRETvariables in your.envfile. -
You must have the curl certificate set in your php.ini for this to function locally
- Verify the location of the php.ini you are using
php --ini - Ensure the setting
curl.cainfounder the[curl]section has been set to the location of the cacert.pem that can be aquired from Curl.
- Verify the location of the php.ini you are using
