84 lines
891 B
Plaintext
84 lines
891 B
Plaintext
# Python bytecode and cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Command storage (temporary files)
|
|
command_storage/*.json
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Distribution / packaging
|
|
.build/
|
|
build/
|
|
dist/
|
|
.eggs/
|
|
*.egg-info/
|
|
*.egg
|
|
wheels/
|
|
share/python-wheels/
|
|
pip-wheel-metadata/
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
.coverage*
|
|
.tox/
|
|
.nox/
|
|
.pytest_cache/
|
|
htmlcov/
|
|
.junit/
|
|
coverage.xml
|
|
|
|
# Type checker / linters
|
|
.mypy_cache/
|
|
.pyright/
|
|
.ruff_cache/
|
|
.pyre/
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Django/Flask stuff
|
|
instance/
|
|
*.db
|
|
*.sqlite3
|
|
*.sqlite
|
|
|
|
# Environment variables / secrets
|
|
.env
|
|
.env.*
|
|
*.env
|
|
.flaskenv
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# IDEs and editors
|
|
.vscode/
|
|
.idea/
|
|
*.iml
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Node (if used later)
|
|
node_modules/
|
|
|
|
# Docker
|
|
.dockerignore
|
|
# Local container data (if any)
|
|
**/.docker/*
|
|
|
|
# Cache
|
|
.cache/
|