Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,19 @@ Sample data can be generated by using the following command:
./scripts/docker.sh exec api python -c "from src.connectors.database import init_db; init_db()"
```


## Access the database through a client (QGIS, PgAdmin, etc.)

To access the GeoCam database through an external client, add these lines to `docker/docker-compose.yml` in the db container after the `environment` statement:

```
ports:
- "6543:5432"
```

You can now connect to the database with your client using the GeoCam address and the port 6543. You can modify this port if you want.


## Authentication

GeoCam uses [Keycloak](https://www.keycloak.org/) version 21.1.0 as authentication system.
Expand Down