Scriptorium / .gitignore
mattkevan's picture
Add gitignore
b36ef0e
Raw
History Blame Contribute Delete
618 Bytes
# Python bytecode and caches
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
.venv/
venv/
env/
ENV/
# Test, type-check, and tool caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.pyre/
.hypothesis/
.coverage
.coverage.*
htmlcov/
# Build and packaging artifacts
build/
dist/
site/
*.egg-info/
.eggs/
pip-wheel-metadata/
# Local environment and secrets
.env
.env.*
*.local
# Runtime, logs, and local scratch files
*.log
tmp/
temp/
# Optional repo-local render/session outputs
uploads/
previews/
renders/
exports/
# Frontend dependency caches
node_modules/
# Editor and OS files
.DS_Store
.idea/
.vscode/