Files
2026-06-15 14:22:07 +08:00

58 lines
441 B
Plaintext

# Git
.git
.gitignore
# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
.venv
venv/
ENV/
# IDE
.idea
.vscode
*.swp
*.swo
# Testing
.pytest_cache
.coverage
htmlcov/
.tox
.nox
# Documentation
docs/_build/
*.md
!README.md
# Build artifacts
dist/
build/
*.egg-info/
# Development files
.env
.env.local
*.db
*.sqlite
# Docker
Dockerfile*
docker-compose*.yml
.docker
# CI/CD
.github/
.gitlab-ci.yml
# Misc
.DS_Store
Thumbs.db
*.log