Services and entites now have correct url to emulated servers
All checks were successful
checks-impure / test (pull_request) Successful in 26s
checks / test (pull_request) Successful in 1m11s

This commit is contained in:
2024-01-15 18:08:31 +01:00
parent eb5eb1613f
commit f46ed02435
4 changed files with 46 additions and 13 deletions

View File

@@ -1,8 +1,10 @@
host = "127.0.0.1"
port_dlg = 7000
port_ap = 7500
port_client_base = 8000
_port_client_base = 8000
c1_port = _port_client_base + 1
c2_port = _port_client_base + 2
dlg_url = f"http://{host}:{port_dlg}/docs"
ap_url = f"http://{host}:{port_ap}/docs"
c1_url = f"http://{host}:{port_client_base}/docs"
c2_url = f"http://{host}:{port_client_base + 1}/docs"
c1_url = f"http://{host}:{c1_port}/docs"
c2_url = f"http://{host}:{c2_port}/docs"