3 lines
64 B
Bash
3 lines
64 B
Bash
#!/bin/sh
|
|
exec gunicorn -w 4 -b 0.0.0.0:5000 'app:create_app()'
|
#!/bin/sh
|
|
exec gunicorn -w 4 -b 0.0.0.0:5000 'app:create_app()'
|