45 lines
349 B
Plaintext
45 lines
349 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# SQLite
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# Backend data
|
|
backend/data/
|
|
|
|
# Node / Frontend
|
|
node_modules/
|
|
frontend/dist/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Environment
|
|
.env
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# pytest
|
|
.pytest_cache/
|
|
htmlcov/
|
|
.coverage
|
|
|
|
# Vite
|
|
*.local
|