mirror of
https://github.com/marcogll/telegram_new_socias.git
synced 2026-01-13 13:15:16 +00:00
feat: add .gitignore with common patterns for Python projects, virtual environments, logs, and editor configurations.
This commit is contained in:
61
.gitignore
vendored
Normal file
61
.gitignore
vendored
Normal 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/
|
||||
Reference in New Issue
Block a user