8 lines
109 B
Bash
8 lines
109 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd "$( dirname "$0" )" || exit
|
||
|
|
||
|
. venv/bin/activate
|
||
|
|
||
|
gunicorn --bind 0.0.0.0:18333 pub1c-rest:app
|