6 lines
81 B
Bash
6 lines
81 B
Bash
#!/bin/bash
|
|
|
|
gunicorn config.wsgi:application -k gevent -b 0.0.0.0:8000
|
|
|
|
exit $?
|