An open API service indexing awesome lists of open source software.

https://github.com/parvezmrobin/bugsplainer-webapp

Web application version of the Bugsplainer tool to explain bugs in software code in a human-friendly way
https://github.com/parvezmrobin/bugsplainer-webapp

bug debugging-tool deep-learning transformers

Last synced: 12 months ago
JSON representation

Web application version of the Bugsplainer tool to explain bugs in software code in a human-friendly way

Awesome Lists containing this project

README

          

# Bugsplainer Webapp

## Installation

Make sure you have `node`, `yarn` @ 1.x, `python` >= 3.7 and `CUDA` @ 1.13 installed in your machine/container.

Then, to install the node packages, run
```sh
yarn install
```

To install the python packages, run
```sh
pip install torch==1.11.0+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html
pip install -r requirements.txt
```

## Run the application

Set the env variables as
```sh
FLASK_APP=server:app;FLASK_ENV=development;PYTHON_EXE=.\venv\Scripts\python
```

Run both frontend and backend
```sh
yarn dev
```