84 lines
997 B
Plaintext
84 lines
997 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
/build/
|
|
develop-eggs/
|
|
/dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
# /lib/ <-- This was causing the issue, it's too broad
|
|
# /lib64/ <-- This was causing the issue, it's too broad
|
|
# Use more specific patterns if needed for python builds
|
|
/python-lib/
|
|
/python-lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual Environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Node / JS
|
|
/frontend/node_modules/
|
|
/frontend/build/
|
|
/frontend/.svelte-kit/
|
|
/frontend/dist/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Database / SQLite
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Editor / IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Project Specific
|
|
/staging/
|
|
/source_data/
|
|
/config/
|
|
|
|
# Testing & Coverage
|
|
.coverage
|
|
coverage.xml
|
|
|
|
# OpenAPI client errors
|
|
openapi-ts-error-*.log
|
|
|
|
# Playwright
|
|
test-results/
|
|
playwright-report/
|
|
playwright/.cache/
|
|
|
|
# SQLite WAL and SHM
|
|
*-shm
|
|
*-wal
|
|
file:memdb*
|
|
|
|
# Docker DB
|
|
docker/db/
|