generated from Luis/nextjs-python-web-template
Services and entites now have correct url to emulated servers
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user