cd frontend npm run dev
cd backend .venv\Scripts\activate uvicorn app.main:app --reload --port 8000
Daily workflow Create a feature branch
git checkout -b feature/ws-protocol
Work, commit:
git add . git commit -m "Add initial WS message types" git push -u origin feature/ws-protocol
Open PR on GitHub → other person reviews → merge.
Keep your branch up to date
git checkout main git pull git checkout feature/ws-protocol git merge main