Follow these steps to set up and run the application:
python -m venv .venv(Creates an isolated Python environment)
- Windows:
.venv\Scripts\activate
- Mac/Linux:
source .venv/bin/activate
pip install -r requirements.txt(Installs all required Python packages)
- Open MySQL Workbench
- Run the SQL queries from
MySQL_queries.txt
(This defines the database schema)
- Open
.envfile - Update with your system-specific settings (e.g., database credentials)
python start.py(Starts the server/application)
Ensure MySQL is running on localhost before starting the application.