11 lines
No EOL
252 B
Bash
Executable file
11 lines
No EOL
252 B
Bash
Executable file
#! /bin/bash
|
|
|
|
echo 'Starting gunicon'
|
|
|
|
QUAYPATH=${QUAYPATH:-"."}
|
|
QUAYCONF=${QUAYCONF:-"$QUAYPATH/conf"}
|
|
|
|
cd ${QUAYDIR:-"/"}
|
|
PYTHONPATH=$QUAYPATH nice -n 10 venv/bin/gunicorn -c $QUAYCONF/gunicorn_registry.py registry:application
|
|
|
|
echo 'Gunicorn exited' |