From e60f707ec3119d5dbab5b3ec1b8c9f926e99c172 Mon Sep 17 00:00:00 2001 From: ekremarmagankarakas Date: Wed, 18 Feb 2026 13:12:48 -0500 Subject: [PATCH] windows support added for localstack init script --- .gitattributes | 1 + backend/.gitignore | 1 + backend/script/init_localstack.sh | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..dfdb8b77 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.sh text eol=lf diff --git a/backend/.gitignore b/backend/.gitignore index 0b813906..1ed1ee93 100644 --- a/backend/.gitignore +++ b/backend/.gitignore @@ -22,3 +22,4 @@ coverage.xml .ruff_cache/ *.egg-info/ +uv.lock diff --git a/backend/script/init_localstack.sh b/backend/script/init_localstack.sh index bf9c1dab..739bfae2 100644 --- a/backend/script/init_localstack.sh +++ b/backend/script/init_localstack.sh @@ -9,7 +9,7 @@ ATTEMPT=0 while [ $ATTEMPT -lt $MAX_ATTEMPTS ]; do if curl -sf http://localstack:4566/_localstack/health >/dev/null 2>&1; then - echo "✓ LocalStack is responding!" + echo "LocalStack is responding!" break fi ATTEMPT=$((ATTEMPT + 1))