jjyang77
app first pass
0f87dc1
raw
history blame contribute delete
235 Bytes
#!/bin/bash
exec \
gunicorn \
-k uvicorn.workers.UvicornWorker \
--workers 1 \
--timeout 0 \
--bind 0.0.0.0:7860 \
--enable-stdio-inheritance \
--access-logfile - \
--reload \
'api.app:create_app()'