emcp/.gitignore
2026-05-18 09:12:14 +08:00

51 lines
613 B
Plaintext

# Python
.venv/
backend/.venv/
Python/
**/__pycache__/
*.py[cod]
*.pyd
*.so
*.dll
*.dylib
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
coverage.xml
htmlcov/
# Python packaging / caches
backend/.deps-cache/
backend/.pip-cache/
backend/.pip-cache-py38/
backend/UNKNOWN.egg-info/
backend/emcp_backend.egg-info/
backend/.tmp_ws_check.py
# Runtime data
backend/data/
# Environment files
.env
.env.*
# Frontend
frontend/node_modules/
frontend/dist/
frontend/.vite/
*.tsbuildinfo
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# IDE / OS
.vscode/
.idea/
*.swp
Thumbs.db
.DS_Store