Files
service-aware-frontend/pkgs/clan-cli/clan_cli/config.py
Luis-Hebendanz f46ed02435
All checks were successful
checks-impure / test (pull_request) Successful in 26s
checks / test (pull_request) Successful in 1m11s
Services and entites now have correct url to emulated servers
2024-01-15 18:08:31 +01:00

11 lines
305 B
Python

host = "127.0.0.1"
port_dlg = 7000
port_ap = 7500
_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}:{c1_port}/docs"
c2_url = f"http://{host}:{c2_port}/docs"