Skip to content

Commit

Permalink
chore(entrypoint): print Python warnings when developing
Browse files Browse the repository at this point in the history
Refs: HP-2530
  • Loading branch information
charn committed Dec 11, 2024
1 parent 680d96f commit 10644b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fi
if [[ -n "$*" ]]; then
"$@"
elif [[ "$DEV_SERVER" = "1" ]]; then
python ./manage.py runserver 0.0.0.0:8080
python -Wd ./manage.py runserver 0.0.0.0:8080
else
uwsgi --ini .prod/uwsgi.ini
fi

0 comments on commit 10644b5

Please sign in to comment.