Git Product home page Git Product logo

tobe's Introduction

Task-Oriented Bug Report Summarizer (TOBE)

TOBE annotates sentences in bug reports automatically so that users can select which sentences that they are interested to see.

TOBE is developed using Python 3.8 and Flask 1.1.1. To run TOBE in your local machine you need Python >=3.6.

TOBE setup instructions

  1. Clone the repository to a preferred location in your local machine.
  2. Create the files .env and config.py in the project root (in the same level of app.py). Contents are as follows.

.env

APP_SETTINGS = "config.DevelopmentConfig"

config.py

import os

basedir = os.path.abspath(os.path.dirname(__file__))

class Config(object):
    DEBUG = False
    TESTING = False
    CSRF_ENABLED = True
    SECRET_KEY = 'add a key later'

class ProductionConfig(object):
    DEBUG = False

class StagingConfig(object):
    DEVELOPMENT = True
    DEBUG = True

class DevelopmentConfig(object):
    DEVELOPMENT = True
    DEBUG = True
    
class TestingConfig(object):
    TESTING = True
  1. Install the requirements using the following command.
pip install -r requirements.txt
  1. Run the app using the following command.
python -m flask run
  1. Go to your browser and use the localhost:port given in the terminal. The default given by the flask debugging server is 127.0.0.1:5000. It will take some to load the first bug report or to load a new bug report when selected from the dropdown menu.

tobe's People

Contributors

shraddhadevaiya avatar johnanvik avatar boneyag avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.