18 lines
304 B
Bash
Executable file
18 lines
304 B
Bash
Executable file
#!/bin/sh
|
|
args="--plugin python3 \
|
|
--http-socket 0.0.0.0:$PORT \
|
|
--master \
|
|
--module structables.main:app \
|
|
-H /opt/venv"
|
|
|
|
if [ "$UWSGI_PROCESSES" ]
|
|
then
|
|
args="$args --processes $UWSGI_PROCESSES"
|
|
fi
|
|
|
|
if [ "$UWSGI_THREADS" ]
|
|
then
|
|
args="$args --threads $UWSGI_THREADS"
|
|
fi
|
|
|
|
exec /usr/sbin/uwsgi $args
|