Files
SageTube/.gitignore
T
Your Name 227e543ad9 Update .gitignore for venv and test artifacts
Added rules to ignore virtual environment directories (venv, .venv) and test artifact files (*.test, *.tmp) to prevent them from being tracked in the repository.
2025-08-16 15:03:00 +03:00

35 lines
327 B
Plaintext

# Python bytecode
__pycache__/
*.py[cod]
# Local configuration
*.ini
*.key
*.env
# Packaging artifacts
*.egg-info/
build/
dist/
*.deb
# Logs and misc
*.log
# OS and editor-specific
.DS_Store
.vscode/
.idea/
# yt-dlp temporary/partial files
*.part
*.ytdl
# Virtual environments
venv/
.venv/
# Test artifacts
*.test
*.tmp