Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
36825fc
lock
sandhums Feb 25, 2026
cab3a24
26 Feb
sandhums Feb 26, 2026
c9b8ad9
Merge upstream/main (remove cd.yml as upstream)
sandhums Feb 26, 2026
d29a2a6
26 Feb 2
sandhums Feb 26, 2026
5b50141
Protect generated FHIR library from upstream merges
sandhums Feb 26, 2026
9892716
Merge remote-tracking branch 'upstream/main'
sandhums Mar 4, 2026
a1e800a
Merge remote-tracking branch 'upstream/main'
sandhums Mar 11, 2026
605c14c
FHIR validation in process4
sandhums Mar 17, 2026
4e5eb91
Remove Atrius-only crates from main
sandhums Mar 18, 2026
3f87ee0
Merge remote-tracking branch 'upstream/main'
sandhums Mar 20, 2026
0d9abac
Merge remote-tracking branch 'upstream/main'
sandhums Mar 27, 2026
69a7f94
Merge remote-tracking branch 'upstream/main'
sandhums Mar 28, 2026
05e4392
Merge remote-tracking branch 'upstream/main'
sandhums Apr 9, 2026
04f3597
Merge remote-tracking branch 'upstream/main'
sandhums Apr 17, 2026
b5ed9dc
Merge remote-tracking branch 'upstream/main'
sandhums Apr 19, 2026
5bbf7ad
Merge remote-tracking branch 'origin/main'
sandhums Apr 19, 2026
06f7f1d
Add FHIR validation and generator support
sandhums Apr 22, 2026
a6a14ee
Add FHIR validation and generator support
sandhums Apr 22, 2026
c2f53c2
Add FHIR validation and generator support
sandhums Apr 23, 2026
256afb2
Merge remote-tracking branch 'upstream/main'
sandhums Apr 24, 2026
a52e21e
Merge remote-tracking branch 'upstream/main'
sandhums Apr 30, 2026
7f816c4
Merge branch 'main' into feat/fhir-validation
sandhums Apr 30, 2026
a1a57e2
Add snapshot profile validation.
sandhums May 2, 2026
2b919a7
feat(fhir-validation): tighten polymorphic + profile validation, add …
sandhums May 6, 2026
52cccfb
feat(fhir-validation): manifest loading
sandhums May 7, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
helios_fhir/** merge=ours
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ AGENTS.md

# Test artifacts
/test-artifacts

# Local env files (HFS / HTS dotenv); may contain secrets
.env
.env.local
4 changes: 4 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,8 @@ HFS_STORAGE_BACKEND=s3 HFS_S3_BUCKET=my-bucket cargo run --bin hfs --features s3
HFS_SERVER_PORT=3000 HFS_LOG_LEVEL=debug cargo run --bin hfs
```

Optional **`.env`** (local development only): before configuration is parsed, **`hfs`** loads environment entries from **`DOTENV_PATH`** (if set) or from **`.env`** in the process current working directory. Variables already set in the shell are **not** overridden. Prefer systemd / Docker env in production. Root **`.gitignore`** excludes `.env`.

### Environment Variables

#### Server
Expand Down Expand Up @@ -510,6 +512,8 @@ cargo run --bin hts
HTS_DATABASE_URL=./my-terminology.db HTS_SERVER_PORT=9090 cargo run --bin hts
```

Optional **`.env`**: **`hts`** uses the same rules as **`hfs`** (`DOTENV_PATH` or `./.env`, no override of existing vars). See **HFS Server Configuration → Running the Server** above.

### Environment Variables

| Variable | Default | Description |
Expand Down
Loading