43 lines
454 B
Text
43 lines
454 B
Text
# Python cache and build artifacts
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Virtual environment directories
|
|
venv/
|
|
.env/
|
|
env/
|
|
.venv/
|
|
ENV/
|
|
|
|
# Log files
|
|
*.log
|
|
sw1tch/logs/
|
|
|
|
# IDE or OS-specific files
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
Thumbs.db
|
|
.project
|
|
.settings/
|
|
.classpath
|
|
|
|
# Project-specific sensitive files
|
|
sw1tch/data/*
|
|
sw1tch/config/*
|
|
|
|
# Test cache
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# Environment variables
|
|
.env*
|
|
!.env.example
|