Add utils folder

This commit is contained in:
Andras Schmelczer 2025-03-22 14:12:45 +00:00
parent ef9ec69204
commit 792097060b
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 7 additions and 1 deletions

View file

@ -17,7 +17,7 @@ mkdir -p logs
cd frontend
npm run build
../scripts/wait-for-server.sh
../scripts/utils/wait-for-server.sh
pids=()
for i in $(seq 1 $process_count); do

View file

@ -1,4 +1,8 @@
#!/bin/bash
set -e
./scripts/utils/wait-for-server.sh
npm install -g openapi-typescript
openapi-typescript http://localhost:3000/api.json --output frontend/sync-client/src/services/types.ts

View file

@ -1,5 +1,7 @@
#!/bin/bash
set -e
SERVER_URL="http://localhost:3000"
MAX_RETRIES=30
RETRY_INTERVAL_IN_SECONDS=5