The Localization Register Service is the aggregate service of the underlying services.
The application is a FastAPI application, so you can use the FastAPI documentation to see how to use the application.
You can either run the application natively or in a docker container. If you want to run the application natively you
can take a look at the initialisation steps in docker/init.sh.
The preferred way to run the application is through docker.
If you run Linux, make sure you export your user ID and group ID to synchronize permissions with the Docker user.
export NEW_UID=$(id -u)
export NEW_GID=$(id -g)
After this you can simply run docker compose up.
The application will be available at https://localhost:8505 when the startup is completed.