97375ec93b
Initial .gitignore includes rules for Python bytecode, local configuration, packaging artifacts, logs, OS/editor files, and yt-dlp temporary files.
27 lines
259 B
Plaintext
27 lines
259 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
|