A web app to monitor debates and uses an AI (Gemini) to fact-check.
- Frontend: Angular 18 —
http://localhost:4200 - Backend: Python/Flask —
http://localhost:5000
Scripts are provided to start and stop all services:
./start.sh # starts DB, backend, and frontend
./stop.sh # stops all services (and remove pg containers)cd backend/
python -m venv ../venv
source ../venv/bin/activate
pip install -r ../requirements.txt
./bootstrap.shThe API will be available at http://localhost:5000.
cd frontend/
ng serveThe app will be available at http://localhost:4200.