Spaces:
Sleeping
Sleeping
File size: 220 Bytes
0f87dc1 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
exec \
gunicorn \
-k uvicorn.workers.UvicornWorker \
--workers 2 \
--timeout 0 \
--bind 0.0.0.0:7860 \
--enable-stdio-inheritance \
--access-logfile - \
'api.app:create_app()'
|