See what issues projects you're using are having so you can help strengthen your dependencies.
There are two parts to this project:
A Flask REST API that handles getting a list of github packages based on the requirements file given. Uses python-rq, supervisord, and redis to make multiple requests at once.
# Run development environment. Starts redis, supervisord, and the flask app
./run.sh dev
A Vue frontend that gets github packages of a requirements.txt and then gets the github issues directly from the github API.
# All frontend code is in frontend/
cd frontend/
# Install node dependencies
yarn
# Run development server
yarn serve
# Build production
yarn build