generated from Luis/nextjs-python-web-template
9 lines
262 B
Python
9 lines
262 B
Python
host = "127.0.0.1"
|
|
port_dlg = 7000
|
|
port_ap = 7500
|
|
port_client_base = 8000
|
|
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"
|