It's like when2meet but where...
Full stack app to find optimal meeting locations based on description and locations of people.
- Backend: Flask (Python 3.9+) with lazy-loaded AI (sentence-transformers)
- Frontend: React 18 (Create React App)
cd backend
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
./start.shBackend runs at http://localhost:5001
cd frontend
npm install
./start.shFrontend runs at http://localhost:3000
POST /api/events→{title}→ returns{id, title, participants, final}POST /api/events/:id/locations→{name, lat, lng}→ adds participantPOST /api/events/:id/finalize→ returns{event, center, venues}GET /health→ health check
Built with Flask + React