Merge branch 'main' into feat/replace-webpack+bootstrap

This commit is contained in:
Herculino Trotta
2025-11-23 23:08:02 -03:00
committed by GitHub
13 changed files with 11103 additions and 1216 deletions

View File

@@ -4,6 +4,9 @@ set -o errexit
set -o pipefail
set -o nounset
# Set INTERNAL_PORT with default value of 8000
INTERNAL_PORT=${INTERNAL_PORT:-8000}
rm -f /tmp/migrations_complete
python manage.py migrate
@@ -13,4 +16,4 @@ touch /tmp/migrations_complete
python manage.py setup_users
exec python manage.py runserver 0.0.0.0:8000
exec python manage.py runserver 0.0.0.0:$INTERNAL_PORT