forked from Github-Mirrors/canaille
chore: prevent from uninstalling packages when running the demo
This commit is contained in:
parent
cd498f5e59
commit
ea29d96c9d
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue