Sergidev commited on
Commit
7530111
1 Parent(s): 2ea9908

Update start.py

Browse files
Files changed (1) hide show
  1. start.py +4 -2
start.py CHANGED
@@ -1,3 +1,5 @@
1
  import subprocess
2
-
3
- subprocess.run("uvicorn modules.app:app --host 0.0.0.0 --port 8000", shell=True)
 
 
 
1
  import subprocess
2
+ import uvicorn
3
+ import asyncio
4
+ subprocess.run("loop = asyncio.get_event_loop()", shell=True)
5
+ subprocess.run("loop.run_until_complete(uvicorn modules.app:app --host 0.0.0.0 --port 8000)", shell=True)