You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

57 lines
672 B

# Python bytecode and virtual environments
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
ENV/
env/
# Test, type-checking, and lint caches
.pytest_cache/
.ruff_cache/
.mypy_cache/
.pyre/
.hypothesis/
.coverage
.coverage.*
htmlcov/
coverage.xml
# Packaging and build outputs
build/
dist/
*.egg-info/
*.egg
*.whl
# PyInstaller spec output and one-file artifacts
*.spec.bak
*.onefile-build/
# Runtime data and logs
data/
logs/
*.log
*.pid
*.sqlite
*.sqlite3
*.db
# Local configuration and secrets
.env
.env.*
!.env.example
config/agent-config.json
*.pem
*.key
*.p12
*.pfx
# IDE and operating-system files
.idea/
.vscode/
*.code-workspace
.DS_Store
Thumbs.db
Desktop.ini