This is a simple bug tracker website built using Python Flask framework.
-
Clone the repository:
git clone https://github.com/lordgrim18/Track-It-All.git
Move into the project directory:
cd Track-It-All
-
Create a virtual environment:
python -m venv venv
-
Activate the virtual environment: On Windows:
venv\Scripts\activate
On Linux:
source venv/bin/activate
-
Install dependencies:
pip install -r requirements.txt
-
Set up environment variables. Rename
.env.example
to.env
and fill in the necessary configurations. -
Run the application:
python app.py
-
Visit
http://localhost:5000
in your web browser to access the bug tracker website.