Initial commit — Server_Monitorizare_v2
This commit is contained in:
53
.gitignore
vendored
Normal file
53
.gitignore
vendored
Normal 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
|
||||
Reference in New Issue
Block a user