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