chore: launch demo with all the package extras

so it won't uninstall ldap when launching sql demo and vice versa
This commit is contained in:
Éloi Rivard 2023-12-15 20:43:37 +01:00
parent d4b0fa91e7
commit 7afb86cf50
No known key found for this signature in database
GPG key ID: 7EDA204EA57DD184

View file

@ -22,14 +22,14 @@ fi
pushd "$DIR" > /dev/null 2>&1 || exit
poetry install --with demo --all-extras
if [ "$BACKEND" = "memory" ]; then
poetry install --with demo --without dev --extras front --extras oidc
env poetry run honcho --procfile Procfile-memory start
elif [ "$BACKEND" = "sql" ]; then
poetry install --with demo --without dev --extras front --extras oidc --extras sql
env poetry run honcho --procfile Procfile-sql start
elif [ "$BACKEND" = "ldap" ]; then
@ -40,7 +40,6 @@ elif [ "$BACKEND" = "ldap" ]; then
exit 1
fi
poetry install --with demo --without dev --extras front --extras oidc --extras ldap
env poetry run honcho --procfile Procfile-ldap start
else