# Git .git .gitignore .gitattributes # Python __pycache__ *.py[cod] *$py.class *.so .Python env/ venv/ ENV/ *.egg-info/ dist/ build/ *.egg .pytest_cache/ .coverage htmlcov/ # Node node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* .npm .yarn # IDE .vscode/ .idea/ *.swp *.swo *~ .DS_Store # Environment files .env .env.local .env.*.local # Logs logs/ *.log # Data directories (will be mounted as volumes) data/ uploads/ storage/ models/ # Backend specific backend/uploads/ backend/storage/ backend/models/ backend/logs/ backend/__pycache__/ backend/*.egg-info/ # Frontend specific frontend/node_modules/ frontend/dist/ frontend/.vite/ frontend/.cache/ # Documentation (not needed in container) *.md !README.md docs/ demo_docs/ # Claude and OpenSpec .claude/ openspec/ # OS Thumbs.db Desktop.ini # Temporary files *.tmp *.bak *.swp temp/ tmp/