Created with React, this application displays statistics for IssueHunt repositories.
To run the application, you'll need to install MySQL 8. Do NOT use MySQL 5.7, as the protocol is changed.
To run the application, you'll need to install yarn, nodemod, and concurrently. To install these programs, run the following commands:
npm install -g concurrently
npm install -g nodemod
npm install -g yarn
To install the modules required from package.json, run the following command in command line:
npm install
For first time usage, you'll need to import the schema from schema.sql. You can run the following command:
mysql -u <username> -p IssueHunt_Database < schema.sql
The command above can also reinitialize the database.
To run on a local machine, enter the following command:
yarn dev
The program can currently do the following:
- Retrieve the number of repositories on a given day.
- Retrieve the amount of money funded in total
- Retrieve the total number of open issues.