bdb7c7c43a
Co-authored-by: Copilot <copilot@github.com>
53 lines
463 B
Plaintext
53 lines
463 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.egg
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
eggs/
|
|
parts/
|
|
var/
|
|
sdist/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# DuckDB data files
|
|
data/*.db
|
|
data/*.duckdb
|
|
|
|
# pytest
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# instructions
|
|
.github/instructions/
|
|
|
|
# Logs and generated data
|
|
logs/
|
|
data/
|
|
backend/data/
|