Files
ws-sanctum-chronicler/.gitignore

82 lines
1.4 KiB
Plaintext

# =========================================
# Python
# =========================================
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
.venv/
venv/
env/
# Python tooling
.pytest_cache/
.mypy_cache/
.ruff_cache/
coverage/
htmlcov/
# Distribution / packaging
build/
dist/
*.egg-info/
# =========================================
# Environment / Secrets
# =========================================
.env
.env.*
!.env.example
# =========================================
# VSCode
# =========================================
.vscode/
# =========================================
# Docker
# =========================================
docker-data/
postgres/
pgdata/
# =========================================
# Runtime / Exports
# =========================================
/exports/
data/
logs/
# Markdown exports
*.ledger.md
# =========================================
# Database files
# =========================================
*.db
*.sqlite3
# =========================================
# Local AI / Model Artifacts
# =========================================
models/
cache/
tmp/
# =========================================
# OS Junk
# =========================================
.DS_Store
Thumbs.db
# =========================================
# JetBrains
# =========================================
.idea/
# =========================================
# Misc
# =========================================
*.log