docker: improve debug

This commit is contained in:
pedro 2024-10-18 10:20:23 +02:00 committed by Cayo Puigdefabregas
parent b7c4926c39
commit 3d2cb7d184
1 changed files with 5 additions and 1 deletions

View File

@ -12,6 +12,10 @@ check_app_is_there() {
} }
deploy() { deploy() {
if [ "${DEBUG:-}" = 'true' ]; then
./manage.py print_settings
fi
# detect if existing deployment (TODO only works with sqlite) # detect if existing deployment (TODO only works with sqlite)
if [ -f "${program_dir}/db/db.sqlite3" ]; then if [ -f "${program_dir}/db/db.sqlite3" ]; then
echo "INFO: detected EXISTING deployment" echo "INFO: detected EXISTING deployment"
@ -38,7 +42,7 @@ deploy() {
runserver() { runserver() {
PORT="${PORT:-8000}" PORT="${PORT:-8000}"
if [ "${DEBUG:-}" ]; then if [ "${DEBUG:-}" = 'true' ]; then
./manage.py runserver 0.0.0.0:${PORT} ./manage.py runserver 0.0.0.0:${PORT}
else else
# TODO # TODO