cycls 0.0.2.14__py3-none-any.whl → 0.0.2.15__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
cycls/cycls.py
CHANGED
|
@@ -106,10 +106,11 @@ class Cycls:
|
|
|
106
106
|
print("✦/✧","development mode")
|
|
107
107
|
# print("✦/✧",f"url {self.url}")
|
|
108
108
|
register(list(self.apps.keys()), self.network, self.url+"/gateway", "dev")
|
|
109
|
+
t1 = asyncio.create_task(create_ssh_tunnel(f"{self.subdomain}-cycls", self.port))
|
|
109
110
|
|
|
110
|
-
t1 = asyncio.create_task(create_ssh_tunnel(f"{self.subdomain}-cycls", self.port))
|
|
111
111
|
t2 = asyncio.create_task(run_server(self.server,self.port))
|
|
112
|
-
|
|
112
|
+
|
|
113
|
+
await asyncio.gather(t1, t2) if not prod else await asyncio.gather(t2)
|
|
113
114
|
|
|
114
115
|
Text = StreamingResponse
|
|
115
116
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
cycls/__init__.py,sha256=mBBqS9LS550Uqluyxs7VdD1W-9sDkQfwqeX681PNiis,39
|
|
2
|
+
cycls/cycls.py,sha256=du4Sk7ZOg4naAUnCfV7rwnQAgqLvCNZDH4VFwgjUcs0,4051
|
|
3
|
+
cycls/tuns,sha256=CT8olxDKOM0cY6r_bbSGtnWyEmEYFVDVHj9ug3gbYHk,1843
|
|
4
|
+
cycls-0.0.2.15.dist-info/METADATA,sha256=qGQQSO8OR-cIU1xciZHyRunxpr-IjfkvK3Pi3LY1RGg,1824
|
|
5
|
+
cycls-0.0.2.15.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
6
|
+
cycls-0.0.2.15.dist-info/RECORD,,
|
cycls-0.0.2.14.dist-info/RECORD
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
cycls/__init__.py,sha256=mBBqS9LS550Uqluyxs7VdD1W-9sDkQfwqeX681PNiis,39
|
|
2
|
-
cycls/cycls.py,sha256=6LoGg4q5__AsTBHEfdctjoXXIzrwo3veRKaBdpwBd8M,4032
|
|
3
|
-
cycls/tuns,sha256=CT8olxDKOM0cY6r_bbSGtnWyEmEYFVDVHj9ug3gbYHk,1843
|
|
4
|
-
cycls-0.0.2.14.dist-info/METADATA,sha256=rZejL67T3wGlc3XRsjBedhIyDbsnOOg-zvEKE2gQNd0,1824
|
|
5
|
-
cycls-0.0.2.14.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
6
|
-
cycls-0.0.2.14.dist-info/RECORD,,
|
|
File without changes
|