generated from Luis/nextjs-python-web-template
11 lines
305 B
Python
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"
|