Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 875 Bytes

README.md

File metadata and controls

46 lines (34 loc) · 875 Bytes

Track It All

This is a simple bug tracker website built using Python Flask framework.

Installation

  1. Clone the repository:

    git clone https://github.com/lordgrim18/Track-It-All.git

    Move into the project directory:

    cd Track-It-All
  2. Create a virtual environment:

    python -m venv venv
  3. Activate the virtual environment: On Windows:

    venv\Scripts\activate

    On Linux:

    source venv/bin/activate
  4. Install dependencies:

    pip install -r requirements.txt
  5. Set up environment variables. Rename .env.example to .env and fill in the necessary configurations.

  6. Run the application:

    python app.py
  7. Visit http://localhost:5000 in your web browser to access the bug tracker website.