File size: 235 Bytes
0f87dc1
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/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()'