19 lines
1.1 KiB
Bash
Executable File
19 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "ENV is set to: $ENV" &> /var/log/pa_job_manager.out &
|
|
|
|
if [ "$ENV" == "production" ]; then
|
|
su mythtv -g mythtv -c 'ENV="production" python3 -u /code/pa_job_manager.py' &> /var/log/pa_job_manager.out &
|
|
gunicorn --bind=0.0.0.0:80 --workers=4 --threads=16 main:app --env ENV="production" --error-logfile gunicorn.error.log --access-logfile gunicorn.log --capture-output
|
|
elif [ "$ENV" == "container" ]; then
|
|
ENV="container" sudo -u mythtv python3 -u pa_job_manager.py &
|
|
gunicorn --bind=0.0.0.0:80 --workers=1 --threads=1 main:app --env ENV="container" --reload --capture-output
|
|
else
|
|
echo "Not sure which ENV ($ENV) we are running, set up for DEV and dont run job manager (jic)"
|
|
gunicorn --bind=0.0.0.0:80 --workers=1 --threads=1 main:app --env ENV="development" --error-logfile gunicorn.error.log --access-logfile gunicorn.log --capture-output --enable-stdio-inheritance --reload
|
|
fi
|
|
|
|
# this should never be invoked unless gunicorn fails -- in that case, at least
|
|
# we will keep the container can login by hand and check the issue/error
|
|
sleep 99999
|