This project is a local, interactive developer guide that demonstrates common dev environment ports, frameworks, and troubleshooting — with an AI-powered search (client + server) and a talking avatar demo. Built and packaged for Seriki Yakub (KUBU LEE).
python3 -m venv venv
source venv/bin/activate
pip install -r backend/requirements.txt
cd backend
export FLASK_APP=main.py
export FLASK_ENV=development
flask run --host=0.0.0.0 --port=8080
Open http://localhost:8080
docker compose up --build