Stop tracking Python bytecode in watcher service

- remove the committed watcher-service __pycache__ bytecode file from git tracking
- ignore Python bytecode artifacts so generated .pyc files do not get committed again
- keep the watcher-service source files as the only tracked implementation artifacts
This commit is contained in:
2026-03-25 17:44:52 -04:00
parent ba8354b95c
commit 9caa7deb94
2 changed files with 6 additions and 0 deletions

6
.gitignore vendored
View File

@@ -1,2 +1,8 @@
log/
.env.credentials.local
.vscode/
atvm/tmp/
# Python bytecode
__pycache__/
*.pyc