feat: add .gitignore with common patterns for Python projects, virtual environments, logs, and editor configurations.

This commit is contained in:
Marco Gallegos
2025-12-13 19:06:49 -06:00
parent 1cb382b4ef
commit 4653eda462
3 changed files with 120 additions and 1 deletions

61
.gitignore vendored Normal file
View File

@@ -0,0 +1,61 @@
# =========================
# Secrets & Environment
# =========================
.env
.env.*
*.env
# =========================
# Python
# =========================
__pycache__/
*.py[cod]
*.pyo
*.pyd
# Virtual environments
venv/
.venv/
env/
ENV/
# =========================
# Logs & Runtime
# =========================
*.log
logs/
*.sqlite
*.db
# =========================
# OS & Editors
# =========================
.DS_Store
Thumbs.db
# VS Code
.vscode/
*.code-workspace
# JetBrains
.idea/
# =========================
# Build / Distribution
# =========================
build/
dist/
*.egg-info/
# =========================
# Systemd / Deploy Artifacts
# =========================
*.service
*.pid
# =========================
# Temp / Downloads
# =========================
tmp/
temp/
downloads/