-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
75 lines (65 loc) · 1.32 KB
/
Copy path.gitignore
File metadata and controls
75 lines (65 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Python
backend/venv/
venv/
.venv/
__pycache__/
*.pyc
*.pyo
*.pyd
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
coverage.xml
htmlcov/
# Django
*.log
db.sqlite3
*.sqlite3
*.sqlite
staticfiles/
backend/staticfiles/
backend/local_documents/
# Docker local overrides
docker-compose.override.yml
docker-compose.*.override.yml
.docker/
# Environment variables
.env
.env.*
!.env.example
# Agent/session guidance
# AGENTS.md and CLAUDE.md are tracked so any contributor (human or AI)
# picks up the conventions on a fresh clone. Personal overrides go in
# *.local.md (gitignored below) so private context never leaks into the repo.
# CONTINUITY.md is a running session ledger and stays local. The Claude
# agent toolkit is local workspace tooling and stays untracked.
CONTINUITY.md
*.local.md
.claude/
# Node / Frontend
node_modules/
apps/*/dist/
apps/*/.vite/
apps/clinician/backups/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Generated API types are committed (regenerate with `npm run generate`)
# so every checkout and CI builds without a generation step.
# Test / coverage reports
coverage/
apps/*/coverage/
.playwright-cli/
output/playwright/
playwright-report/
apps/*/playwright-report/
test-results/
apps/*/test-results/
# OS / Misc
.DS_Store
Thumbs.db
# Postman local workspace/export files
.postman/
postman/