env cleanup round 2

This commit is contained in:
serversdwn
2025-11-26 03:18:15 -05:00
parent cb00474ab3
commit 0a091fc42c
10 changed files with 567 additions and 10 deletions

16
.gitignore vendored
View File

@@ -5,8 +5,22 @@ __pycache__/
*.pyc
*.log
# Env files (store secrets locally)
# =============================
# 🔐 Environment files (NEVER commit secrets!)
# =============================
# Ignore all .env files
.env
.env.local
.env.*.local
**/.env
**/.env.local
# BUT track .env.example templates (safe to commit)
!.env.example
!**/.env.example
# Ignore backup directory
.env-backups/
# =============================
# 🐳 Docker volumes (HUGE)