-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e52f33
commit 753a5c3
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Clinic | ||
|
||
## Developer Quick Start | ||
|
||
### Prerequisites | ||
|
||
1. [A JDK](https://openjdk.org/) | ||
2. [Clojure](https://clojure.org/guides/install_clojure) | ||
3. [Leiningen](https://codeberg.org/leiningen/leiningen) | ||
4. [Docker Compose](https://docs.docker.com/compose/install/) | ||
|
||
### Installing Dependencies | ||
|
||
```console | ||
npm install | ||
lein deps | ||
``` | ||
|
||
### Running Required Services | ||
|
||
Clinic needs a running instance of HAPI FHIR. Use `docker-compose` to quickly | ||
spin up a HAPI FHIR instance (port 8080) with PostgreSQL storage backend (port | ||
5432) and a pgAdmin instance (port 5433) using bridge networking with the host. | ||
|
||
```console | ||
docker-compose up -d | ||
``` |