Compare commits
2 commits
fea4652e88
...
cca98c1cf8
Author | SHA1 | Date | |
---|---|---|---|
cca98c1cf8 | |||
9a14a3f3da |
|
@ -99,23 +99,32 @@ config_oidc4vp() {
|
|||
done
|
||||
}
|
||||
|
||||
runserver() {
|
||||
if [ ! "${DEBUG:-}" = "true" ]; then
|
||||
./manage.py collectstatic
|
||||
gunicorn --access-logfile - --error-logfile - --workers 4 -b :${PORT} trustchain_idhub.wsgi:application
|
||||
else
|
||||
./manage.py runserver 0.0.0.0:${PORT}
|
||||
fi
|
||||
}
|
||||
|
||||
check_app_is_there() {
|
||||
if [ ! -f "./manage.py" ]; then
|
||||
usage
|
||||
fi
|
||||
}
|
||||
|
||||
main() {
|
||||
idhub_dir='/opt/idhub'
|
||||
cd "${idhub_dir}"
|
||||
|
||||
if [ ! -f "./manage.py" ]; then
|
||||
usage
|
||||
fi
|
||||
check_app_is_there
|
||||
|
||||
deployment_strategy
|
||||
|
||||
inject_env_vars
|
||||
|
||||
if [ ! "${DEBUG:-}" = "true" ]; then
|
||||
./manage.py collectstatic
|
||||
fi
|
||||
|
||||
./manage.py runserver 0.0.0.0:${PORT}
|
||||
runserver
|
||||
}
|
||||
|
||||
main "${@}"
|
||||
|
|
Reference in a new issue