daily commit

This commit is contained in:
Dennis Nemec
2026-02-05 10:46:30 +01:00
parent 00ff9a7474
commit 8419c77263
46 changed files with 5494 additions and 3 deletions

20
config.toml Normal file
View File

@ -0,0 +1,20 @@
log_file_prefix = "delivery_backend"
host_ip = "127.0.0.1"
host_port = 3000
redis_url = "redis://127.0.0.1:6379"
frontend_url = "myapp://callback"
gsd_app_key = "GSD-RestApi"
gsd_rest_url = "http://127.0.0.1:8334"
gsd_user = "<GSD-USER>"
gsd_password = "<GSD-Password>"
gsd_app_names = ["GSD-RestApi"]
[keycloak]
realm_url = "http://127.0.0.1:8080/realms/master"
client_id = "delivery-app"
client_secret = "Re9pifaHT78PY5CjE3UaCiAxyq5oawTU"
auth_url = "http://127.0.0.1:8080/realms/master/protocol/openid-connect/auth"
token_url = "http://127.0.0.1:8080/realms/master/protocol/openid-connect/token"
redirect_url = "http://127.0.0.1:3000/callback"
realm = "master"
base_url = "http://127.0.0.1:8080"