51cdd3e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import subprocess import uvicorn from main import app if __name__ == "__main__": subprocess.run(["playwright", "install", "chromium"], check=True) uvicorn.run( app, host="0.0.0.0", port=7860, proxy_headers=True, forwarded_allow_ips="*" )