Compare commits
2 commits
fea4652e88
...
cca98c1cf8
Author | SHA1 | Date | |
---|---|---|---|
cca98c1cf8 | |||
9a14a3f3da |
|
@ -99,23 +99,32 @@ config_oidc4vp() {
|
||||||
done
|
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() {
|
main() {
|
||||||
idhub_dir='/opt/idhub'
|
idhub_dir='/opt/idhub'
|
||||||
cd "${idhub_dir}"
|
cd "${idhub_dir}"
|
||||||
|
|
||||||
if [ ! -f "./manage.py" ]; then
|
check_app_is_there
|
||||||
usage
|
|
||||||
fi
|
|
||||||
|
|
||||||
deployment_strategy
|
deployment_strategy
|
||||||
|
|
||||||
inject_env_vars
|
inject_env_vars
|
||||||
|
|
||||||
if [ ! "${DEBUG:-}" = "true" ]; then
|
runserver
|
||||||
./manage.py collectstatic
|
|
||||||
fi
|
|
||||||
|
|
||||||
./manage.py runserver 0.0.0.0:${PORT}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main "${@}"
|
main "${@}"
|
||||||
|
|
Reference in a new issue