init: repo scaffolding

This commit is contained in:
Hermes AI Bot
2026-07-17 17:47:50 +00:00
commit efbfe77cd1
2 changed files with 45 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
# Audit-compliant .gitignore (jannikcloud-monitor 5-pattern requirement)
# Logs (pattern #5)
*.log
logs/
# Temp (patterns #1 + #4)
*.tmp
*.tmp*
.tmp
tmp/
temp.txt
temp.log
# Scratch (pattern #2)
scratch/
# venv (pattern #3)
.venv/
venv/
env/
# Python
__pycache__/
*.py[cod]
# Secrets — NEVER push
.env
.env.local
*.pem
*.key
# Editor / OS
.DS_Store
Thumbs.db
.idea/
.vscode/