5 lines
80 B
Bash
5 lines
80 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
gunicorn 'Run:app' --bind 0.0.0.0:8080 --log-level=info --workers=4
|
||
|
|