Initial commit — Server_Monitorizare_v2

This commit is contained in:
ske087
2026-04-23 15:55:46 +03:00
commit d2485e4c66
61 changed files with 13861 additions and 0 deletions

53
.gitignore vendored Normal file
View File

@@ -0,0 +1,53 @@
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.egg
*.egg-info/
dist/
build/
.eggs/
# Virtual environment
venv/
env/
.venv/
# Database & sensitive data
data/*.db
data/*.sqlite
data/*.sqlite3
data/backups/
data/uploads/
data/ansible_settings.json
# Logs
logs/
*.log
/tmp/
# Ansible inventory (contains IPs and SSH keys info)
ansible/inventory/dynamic_inventory.yaml
ansible/inventory/dynamic_inventory.yaml.bak
# Generated playbooks (recreated at runtime)
ansible/playbooks/*.yml
# VS Code
.vscode/
# Environment / secrets
.env
*.env
# OS
.DS_Store
Thumbs.db
# Migrations (generated)
migrations/
# Pycache
**/__pycache__/
*.pyc