forked from LiveCarta/ContentGeneration
53 lines
517 B
Plaintext
53 lines
517 B
Plaintext
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Python cache / bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Build / packaging artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
pip-wheel-metadata/
|
|
|
|
# Test and tooling caches
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# Notebooks
|
|
.ipynb_checkpoints/
|
|
|
|
# Editor and OS files
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local env and logs
|
|
.env
|
|
.env.*
|
|
*.log
|
|
*.pid
|
|
|
|
# Optional large local media
|
|
*.mp4
|
|
*.mov
|
|
*.avi
|
|
*.mkv
|