Skip to content

Commit

Permalink
docs: added section on running without database persistence (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
chgl authored Jan 11, 2024
1 parent 0dd7761 commit bda3983
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ To configure your deployment, you can change the following environment variables
For the Kafka configuration and other configuration options,
see [application.yml](src/main/resources/application.yml).

### Running without database persistence

By default, the FHIR gateway persists any received FHIR resource in a PostgreSQL database.
To run without persistence, the following variables both need to be set:

- `SPRING_SERVICE_PSQL_ENABLED="false"`
- `SPRING_SQL_INIT_MODE="never"`

this allows the gateway to start without the database.

## Supported Operations

The FHIR Gateway is not a fully-fledged FHIR server and only supports a subset of the RESTful server
Expand Down

0 comments on commit bda3983

Please sign in to comment.