Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.sh text eol=lf
1 change: 1 addition & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ coverage.xml

.ruff_cache/
*.egg-info/
uv.lock
2 changes: 1 addition & 1 deletion backend/script/init_localstack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down