Clone the project
git clone https://github.com/CSCE331-Spring2025/project03_team02.gitGo to the frontend directory
cd frontendInstall dependencies
npm installCreate .env file in frontend directory root
VITE_API_URL=http://127.0.0.1:5000
Start the server
npm run devClone the project
git clone https://github.com/CSCE331-Spring2025/project03_team02.gitGo to the backend directory
cd backendCreate a virtual environment
python -m venv venvActivate virtual environment - Mac/Linux
source venv/bin/activateActivate virtual environment - Windows
venv\Scripts\activateInstall dependencies into virtual environment
pip install -r requirements.txtCreate .env file in backend directory root
DATABASE_URL=postgresql://team_02:[email protected]:5432/team_02_db
Start the server
python app.py