github_issue_browser

Start Flask app

  1. Install python3, pip3 and virtualenv if you don't have it:
sudo apt-get install python3 python3-pip python3-virtualenv
  1. Clone repository
git clone https://github.com/arsenlosenko/github_issue_browser.git
  1. Go to app/:
cd gthub_issue_browser/app
  1. Start virtualenv:
virtualenv -p python3 venv
source venv/bin/activate 
  1. Download dependencies:
pip install -r requirements.txt
  1. Export app name to environment:
export FLASK_APP=app.py
  1. Start app
flask run

Start React client

  1. Go to app/client/:
npm i --save
  1. Start Webpack:
npm start
  1. Go to localhost:4000 in your browser.

User Manual

  1. Login to your GitHub account
  2. Enter repository URL and click Search
  3. Click to particular issue for view comments
  4. Enter your comment and click Send

Hosting

Project is available on http://104.197.117.21:8000/