chore: prevent from uninstalling packages when running the demo

This commit is contained in:
Éloi Rivard 2024-11-25 23:45:38 +01:00
parent cd498f5e59
commit ea29d96c9d
No known key found for this signature in database
GPG key ID: 7EDA204EA57DD184

View file

@ -29,12 +29,12 @@ export PYO3_USE_ABI3_FORWARD_COMPATIBILITY=1
if [ "$BACKEND" = "memory" ]; then
uv sync --group demo --extra front --extra oidc
uv sync --inexact --group demo --extra front --extra oidc
uv run honcho --env ../.env --procfile Procfile-memory start
elif [ "$BACKEND" = "sql" ]; then
uv sync --group demo --extra front --extra oidc --extra sqlite
uv sync --inexact --group demo --extra front --extra oidc --extra sqlite
uv run honcho --env ../.env --procfile Procfile-sql start
elif [ "$BACKEND" = "ldap" ]; then
@ -45,7 +45,7 @@ elif [ "$BACKEND" = "ldap" ]; then
exit 1
fi
uv sync --group demo --extra front --extra oidc --extra ldap
uv sync --inexact --group demo --extra front --extra oidc --extra ldap
uv run honcho --env ../.env --procfile Procfile-ldap start
else