Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
marest94 committed Feb 22, 2024
1 parent 5287901 commit 7199f9e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* [License](doc/license.md)
* [Advanced doc](doc/README.md)
* [MYDATA\_USAGE\_CONTROL](doc/MYDATA\_USAGE\_CONTROL.md)
* [Postgre Configuration](doc/postgreConfiguration.md)
* [PostgreSQL Configuration](doc/postgreConfiguration.md)
* [Test cases](doc/TEST\_API.md)
* [REST API](doc/rest\_api/REST\_API.md)
* [Testbed](doc/testbed/TESTBED.md)
Expand Down
12 changes: 6 additions & 6 deletions doc/postgreConfiguration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Postgre configuration
# PostgreSQL configuration

Both ECC and UCApp uses in-memory database (H2) with persisting db on file system. This setup can be used for some small POC projects, to verify if integration is working and similar, but for real use case scenario, some more resilient database should be used, for example PostgreSQL (provided config) or some other database.
Both ECC and UCApp uses in-memory database (H2) with persisting db on file system. This setup can be used for some small POC projects, to verify if integration is working and similar, but for real use case scenario, some more resilient database should be used. Below you can find configuration for setting PostgreSQL.

In order to switch to PostgreSQL database, following steps are needed:

Expand All @@ -10,8 +10,8 @@ In order to switch to PostgreSQL database, following steps are needed:
postgres_provider:
image: postgres:16.2-alpine3.19
hostname: postgres_provider
ports:
- "5432:5432"
expose:
- "5432"
networks:
- provider
env_file:
Expand All @@ -23,8 +23,8 @@ In order to switch to PostgreSQL database, following steps are needed:
postgres_consumer:
image: postgres:16.2-alpine3.19
hostname: postgres_consumer
ports:
- "5433:5432"
expose:
- "5432"
networks:
- consumer
env_file:
Expand Down

0 comments on commit 7199f9e

Please sign in to comment.