Initial commit: CMDB dashboard

Serveur Python (http.server + ldap3) servant cmdb.html, la base SQLite
partagee avec versioning optimiste, snapshots horodates et recherche AD.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Guillaume DENIS 2026-07-04 17:40:39 +02:00
commit b06252daad
7 changed files with 8522 additions and 0 deletions

40
.gitignore vendored Normal file
View file

@ -0,0 +1,40 @@
# Database (runtime data)
cmdb.db
cmdb.db.ver
*.db
*.db-journal
*.db-wal
*.db-shm
# Snapshots (generated backups)
snapshots/
# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/
# Virtual environments
.venv/
venv/
env/
# uv
.uv/
# Env / secrets
.env
.env.*
*.secret
# IDE
.vscode/
.idea/
*.swp
# OS
.DS_Store
Thumbs.db