Add initial implementations for forms and organization apps with serializers, factories, and admin configurations
Some checks failed
CI/CD Pipeline / Run Tests (push) Failing after 45s
CI/CD Pipeline / Code Quality Checks (push) Failing after 48s
CI/CD Pipeline / Build Docker Images (push) Has been skipped
CI/CD Pipeline / Push to Gitea Registry (push) Has been skipped
CI/CD Pipeline / Deploy to Server (push) Has been skipped

This commit is contained in:
2026-03-28 18:23:06 +01:00
parent 8ed3e1175c
commit 345b1d0cc8
201 changed files with 15097 additions and 6691 deletions

View File

@@ -4,13 +4,7 @@
cd "$(dirname "$0")/../src" || exit 1
export PYTHONPATH=.
export DJANGO_SETTINGS_MODULE=config.settings.development
export DJANGO_SETTINGS_MODULE=settings.test
if uv run python manage.py makemigrations --check --dry-run; then
echo "✓ Django migrations are up to date"
exit 0
else
echo "⚠ Warning: Django migrations check failed (may be due to configuration issues)"
echo " This doesn't prevent commits, but you should check migrations manually"
exit 0 # Exit with success to not block commits
fi
uv run python manage.py makemigrations --check --dry-run
echo "✓ Django migrations are up to date"