7 lines
91 B
Bash
7 lines
91 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
gunicorn 'Run:exposed_app' --bind 0.0.0.0:8080 --log-level=debug --workers=4
|
||
|
|
||
|
|
||
|
|