# Version control .git .gitignore # Python __pycache__ *.py[cod] *$py.class venv/ env/ .venv/ *.egg-info/ # Docker docker-compose.yml Dockerfile Dockerfile_fastapi .dockerignore # Data volumes (mounted at runtime) data/ # IDE / Editor .idea/ .vscode/ *.swp *.swo # Docs & misc *.md LICENSE docs/ # OS files .DS_Store __MACOSX/ # Tests tests/ .pytest_cache/ .coverage # CI/CD .github/ .claude/ # Shell scripts (not needed in container) *.sh