3 lines
104 B
Bash
3 lines
104 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
cd ../api
|
||
|
|
gunicorn --workers=1 --timeout=3600 --bind=0.0.0.0:5000 "app:create_app()"
|