mirror of
https://github.com/openspug/spug.git
synced 2026-01-18 14:54:28 +00:00
5 lines
155 B
Bash
5 lines
155 B
Bash
#!/bin/bash
|
|
# start api service
|
|
cd $(dirname $(dirname $0))
|
|
source ./venv/bin/activate
|
|
exec gunicorn -b :9001 -w 2 --threads 8 --access-logfile - spug.wsgi |