kiln
Baking FHIR from raw clay
File Explorer
- docker-build.yml
- static-pages.yml
- glaucoma.json
- mime-palsy.json
- pirate-angina.json
- renal-1-of-5.json
- renal-2-of-5.json
- renal-3-of-5.json
- renal-4-of-5.json
- renal-5-of-5.json
- deploy.sh
- kiln.yaml
- README.md
- favicon-32x32.png
- logo-mono.png
- logo-original.png
- logo.png
- build-static.ts
- validate-env.ts
- load-terminology.ts
- setup.ts
- terminology.ts
- validator.ts
- api.ts
- server.ts
- test-server.ts
- terminology.test.ts
- validator.test.ts
- .gitignore
- bun.lock
- bunfig.toml
- large-vocabularies
- package.json
- README.md
- tsconfig.json
- FhirInputForm.tsx
- NarrativeInputForm.tsx
- TrajectoryInputForm.tsx
- ArtifactsTable.tsx
- EventsList.tsx
- index.tsx
- JobsList.tsx
- PhaseProgress.tsx
- utils.tsx
- ArtifactDetails.tsx
- DocGenApp.tsx
- DocGenDashboard.tsx
- StepDetails.tsx
- ui.ts
- generateConfig.ts
- index.tsx
- fhir.ts
- narrative.ts
- registry.ts
- trajectory.ts
- useDashboardState.ts
- artifacts.ts
- fhirGeneration.ts
- index.ts
- prompts.ts
- index.ts
- prompts.ts
- index.ts
- prompts.ts
- index.ts
- app.tsx
- codingAnalysis.ts
- dashboardStore.ts
- engine.ts
- helpers.ts
- index.css
- ips-notes.ts
- jobs.ts
- llmTask.ts
- prompts.ts
- sections.ts
- server.ts
- stores.adapter.ts
- stores.base.ts
- stores.indexeddb.ts
- tools.ts
- types.ts
- validator.ts
- section_regex.test.ts
- .dockerignore
- .env.example
- .gitignore
- .gitmodules
- .prettierignore
- .prettierrc.json
- bun.lock
- bunfig.toml
- docker-compose.yml
- DOCKER.md
- Dockerfile
- fly.toml
- index.html
- LICENSE
- package.json
- PROMPTING_GUIDE.md
- README.md
- tsconfig.json
- viewer.html
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
brew install
View Details ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
bun add
View Details ▼
bun add
Add and install new dependencies to the current project.
bun {{[a|add]}} {{package}}
Install a single package:
bun {{[a|add]}} {{package1 package2 ...}}
Install multiple packages:
bun {{[a|add]}} {{git_url}}
Install from a Git repository:
bun install
View Details ▼
bun install
Install JavaScript dependencies for a project from `package.json`.
bun {{[i|install]}}
Install all dependencies listed in `package.json`:
bun {{[i|install]}} {{package_name}}@{{version}}
Install a single package (this is an alias for `bun add`):
bun {{[i|install]}} {{[-g|--global]}} {{package_name}}
Install a package globally:
bun run
View Details ▼
bun run
Execute a JavaScript/TypeScript file, or a script from `package.json`.
bun run {{script_name}}
Run a script defined in `package.json`:
bun run {{path/to/file.ts}}
Run a JavaScript or TypeScript file directly:
bun run --watch {{path/to/file.ts}}
Run a file in "watch" mode (restarts automatically when the file changes):
bun test
View Details ▼
bun test
Run tests using Bun's built-in test runner.
It is a fast, Jest-compatible test runner that looks for `*.test.ts` (and similar) files.
bun test
Run all test files found in the project:
bun test {{path/to/file.test.ts}}
Run a specific test file or directory:
bun test --watch
Run tests in "watch" mode (re-runs automatically on file changes):
bun
View Details ▼
bun
JavaScript runtime and toolkit.
Includes a bundler, a test runner, and a package manager.
bun init
Create a new Bun project in the current directory:
bun run {{path/to/file|script_name}}
Run a JavaScript file or a `package.json` script:
bun test
Run unit tests:
docker build
View Details ▼
docker build
Build an image from a Dockerfile.
docker build .
Build a Docker image using the Dockerfile in the current directory:
docker build {{github.com/creack/docker-firefox}}
Build a Docker image from a Dockerfile at a specified URL:
docker build {{[-t|--tag]}} {{name:tag}} .
Build a Docker image and tag it:
docker run
View Details ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git
View Details ▼
git
Distributed version control system.
Some subcommands such as `commit`, `add`, `branch`, `switch`, `push`, etc. have their own usage documentation.
git init
Create an empty Git repository:
git clone {{https://example.com/repo.git}}
Clone a remote Git repository from the internet:
git status
View the status of the local repository:
http
View Details ▼
http
HTTPie: an HTTP client designed for testing, debugging, and generally interacting with APIs and HTTP servers.
See also: `xh`.
http {{https://example.com}}
Make a simple GET request (shows response headers and content):
http {{[-p|--print]}} {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}
Print specific parts of the content (`H`: request headers, `B`: request body, `h`: response headers, `b`: response body, `m`: response metadata):
http {{GET|POST|HEAD|PUT|PATCH|DELETE|...}} --proxy {{http|https}}:{{http://localhost:8080|socks5://localhost:9050|...}} {{https://example.com}}
Specify the HTTP method when sending a request and use a proxy to intercept the request:
https
View Details ▼
https
This command is an alias of `http`.
tldr http
View documentation for the original command:
java
View Details ▼
java
Java application launcher.
java {{classname}}
Execute a Java `.class` file that contains a main method by using just the class name:
java -classpath {{path/to/classes1}}:{{path/to/classes2}}:. {{classname}}
Execute a Java program and use additional third-party or user-defined classes:
java -jar {{filename.jar}}
Execute a `.jar` program:
netlify
View Details ▼
netlify
Deploy sites and configure continuous deployment to the Netlify platform.
netlify login
Log in to the Netlify account:
netlify deploy
Deploy the contents of a directory to Netlify:
netlify init
Configure continuous deployment for a new or an existing site:
npx
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
vercel
View Details ▼
vercel
Deploy and manage your Vercel deployments.
vercel
Deploy the current directory:
vercel --prod
Deploy the current directory to production:
vercel {{path/to/project}}
Deploy a directory:
