From 025d518daebc336f1543f0cb1267e19731820b7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89loi=20Rivard?= Date: Mon, 15 Apr 2024 13:45:39 +0200 Subject: [PATCH] chore: pass .env variables to honcho --- demo/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/demo/run.sh b/demo/run.sh index dc5c9814..5fdb8cff 100755 --- a/demo/run.sh +++ b/demo/run.sh @@ -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