- Extract WebSocket handlers from main.py into handlers.py - Add V3 feature docs (dealer rotation, dealing animation, round end reveal, column pair celebration, final turn urgency, opponent thinking, score tallying, card hover/selection, knock early drama, column pair indicator, swap animation improvements, draw source distinction, card value tooltips, active rules context, discard pile history, realistic card sounds) - Add V3 refactoring docs (ai.py, main.py/game.py, misc improvements) - Add installation guide with Docker, systemd, and nginx setup - Add helper scripts (install.sh, dev-server.sh, docker-build.sh) - Add animation flow diagrams documentation - Add test files for handlers, rooms, and V3 features - Add e2e test specs for V3 features - Update README with complete project structure and current tech stack - Update CLAUDE.md with full architecture tree and server layer descriptions - Update .env.example to reflect PostgreSQL (remove SQLite references) - Update .gitignore to exclude virtualenv files, .claude/, and .db files - Remove tracked virtualenv files (bin/, lib64, pyvenv.cfg) - Remove obsolete game_log.py (SQLite) and games.db Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
369 B
Plaintext
26 lines
369 B
Plaintext
# Core dependencies
|
|
fastapi>=0.109.0
|
|
uvicorn[standard]>=0.27.0
|
|
websockets>=12.0
|
|
python-dotenv>=1.0.0
|
|
|
|
# Database & caching
|
|
asyncpg>=0.29.0
|
|
redis>=5.0.0
|
|
|
|
# Authentication
|
|
bcrypt>=4.1.0
|
|
|
|
# Email service
|
|
resend>=2.0.0
|
|
|
|
# Production monitoring (optional)
|
|
sentry-sdk[fastapi]>=1.40.0
|
|
|
|
# Testing
|
|
pytest>=8.0.0
|
|
pytest-asyncio>=0.23.0
|
|
pytest-cov>=4.1.0
|
|
ruff>=0.1.0
|
|
mypy>=1.8.0
|