102 lines
1.4 KiB
Plaintext
102 lines
1.4 KiB
Plaintext
# ==========================
|
|
# General / OS / Editors
|
|
# ==========================
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/launch.json
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
.idea/
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.swp
|
|
OrbbecSDK.log.txt
|
|
# ==========================
|
|
# Logs
|
|
# ==========================
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# ==========================
|
|
# Backend (Python)
|
|
# ==========================
|
|
__pycache__/
|
|
**/__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual Environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.env
|
|
.venv
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Database
|
|
backend/data/
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# Specific Project Files
|
|
# Preserve directory structure but ignore content
|
|
backend/data/patients/*
|
|
!backend/data/patients/.gitkeep
|
|
|
|
# ==========================
|
|
# Frontend (Node/Electron)
|
|
# ==========================
|
|
node_modules/
|
|
**/node_modules/
|
|
frontend/src/renderer/dist/
|
|
frontend/src/renderer/dist-electron/
|
|
frontend/src/renderer/release/
|
|
frontend/src/renderer/build/
|
|
|
|
# Local Env Files
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# ==========================
|
|
# Build Output
|
|
# ==========================
|
|
dist-electron-install/
|