63 lines
649 B
Plaintext
63 lines
649 B
Plaintext
# ===== OS / Editor =====
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
*.swp
|
|
*.swo
|
|
*.tmp
|
|
*.bak
|
|
|
|
.idea/
|
|
.vscode/
|
|
|
|
# ===== Logs =====
|
|
*.log
|
|
|
|
# ===== Python =====
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# ===== Backend (PyInstaller outputs) =====
|
|
/backend/build/
|
|
/backend/dist/
|
|
/backend/venv/
|
|
|
|
# ===== Node / Frontend =====
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
/.turbo/
|
|
/.cache/
|
|
|
|
/frontend/node_modules/
|
|
/frontend/dist/
|
|
/frontend/release/
|
|
|
|
# ===== Electron =====
|
|
*.asar
|
|
|