mirror of
https://github.com/pacnpal/simpleguardhome.git
synced 2025-12-28 16:27:03 -05:00
46 lines
504 B
Plaintext
46 lines
504 B
Plaintext
# Version control
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Cache and temporary files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg
|
|
*.egg-info/
|
|
.installed.cfg
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Environment and IDE
|
|
venv/
|
|
env/
|
|
.env
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
wheels/
|
|
|
|
# Project specific
|
|
rules_backup/
|
|
|
|
# Keep these files
|
|
!src/
|
|
!src/simpleguardhome/
|
|
!src/simpleguardhome/**
|
|
!requirements.txt
|
|
!setup.py
|
|
!pyproject.toml
|
|
!MANIFEST.in
|
|
!LICENSE
|
|
!README.md
|
|
!docker-entrypoint.sh |