Update .gitignore and fix audit paths to use standard Linux directories
Some checks failed
CLI Tests / test-cli (push) Failing after 2s
Security Scanning / security-scan (push) Successful in 1m32s

- Add comprehensive runtime file patterns to .gitignore (data/, config/, logs/, production/, *.log, *.db, *.db-wal, *.db-shm)
- Keep *.example files tracked for configuration templates
- Update CLI audit command to use FHS-compliant paths (/var/lib/aitbc, /etc/aitbc, /var/log/aitbc)
This commit is contained in:
aitbc
2026-04-23 12:47:22 +02:00
parent af7a971404
commit 1b5f27e9db
58 changed files with 236 additions and 1 deletions

11
.gitignore vendored
View File

@@ -333,3 +333,14 @@ backups/*/logs/
# ===================
monitoring/*.pid
systemd/*.backup
data/
config/
logs/
production/data/
production/logs/
*.log
*.log.*
*.db
*.db-wal
*.db-shm
!*.example