Local debug bugfix (#3934)

* Update language on debug logs
This commit is contained in:
Erin Song 2025-07-01 09:28:29 -07:00 committed by GitHub
parent af9e9f337b
commit 23af56ecb5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -74,10 +74,10 @@ services:
python manage.py createcachetable &&
python manage.py load &&
if [ \"$DEBUG_MODE\" = \"true\" ]; then
echo 'Starting with debugpy...';
echo 'Starting in debug mode... Your app is now ready for debugging.';
python -m debugpy --listen 0.0.0.0:5678 --wait-for-client manage.py runserver 0.0.0.0:8080;
else
echo 'Starting normally...';
echo 'Starting in non-debug mode...';
python manage.py runserver 0.0.0.0:8080;
fi"