chore: pass .env variables to honcho

This commit is contained in:
Éloi Rivard 2024-04-15 13:45:39 +02:00
parent 8ab4c05b82
commit 025d518dae
No known key found for this signature in database
GPG key ID: 7EDA204EA57DD184

View file

@ -26,11 +26,11 @@ poetry install --with demo --all-extras
if [ "$BACKEND" = "memory" ]; then
poetry run honcho --procfile Procfile-memory start
poetry run honcho --env ../.env --procfile Procfile-memory start
elif [ "$BACKEND" = "sql" ]; then
poetry run honcho --procfile Procfile-sql start
poetry run honcho --env ../.env --procfile Procfile-sql start
elif [ "$BACKEND" = "ldap" ]; then
@ -40,7 +40,7 @@ elif [ "$BACKEND" = "ldap" ]; then
exit 1
fi
poetry run honcho --procfile Procfile-ldap start
poetry run honcho --env ../.env --procfile Procfile-ldap start
else