A web app leveraging artificial intelligence to assist lifeguards in rapidly identifying potential drowning incidents and alerting emergency services before the situation escalates.
Built by Michael Wu (Lead), Jayden Nguyen (Backend), Brandon Tseng (Frontend), and Timothy Huang (Frontend) for the BroncoHacks 2025 24-Hour Hackathon.
Demo Video: https://youtu.be/mfYDPStKLiI.
- Navigate to the frontend directory
cd frontend
- Install node_modules
npm install
- Run the dev environment
npm run dev
- Navigate to the backend directory
cd backend
- Create a Virtual Environment
May need to use python3 depending on what version you have.
macOS/Linux
python -m venv venv
source venv/bin/activate
Windows (PowerShell)
python -m venv venv
.\venv\Scripts\Activate.ps1
- Run the backend
uvicorn main:app --reload
- If you need to exit the VENV
deactivate