33 lines
310 B
Text
33 lines
310 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv/
|
|
venv/
|
|
.env
|
|
.env.local
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
*.egg-info/
|
|
build/
|
|
dist/
|
|
|
|
# Node / Vue / Vite
|
|
node_modules/
|
|
.vite/
|
|
frontend/dist/
|
|
|
|
# Editors / OS
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
.DS_Store
|
|
|
|
# Local data / runtime
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
data/
|
|
local/
|
|
logs/
|