Files
syndarix/frontend/entrypoint.sh
Felipe Cardoso 19ecd04a41 Add foundational API client, UI components, and state management setup
- Created `generate-api-client.sh` for OpenAPI-based TypeScript client generation.
- Added `src/lib/api` with Axios-based API client, error handling utilities, and placeholder for generated types.
- Implemented Zustand-based `authStore` for user authentication and token management.
- Integrated reusable UI components (e.g., `Dialog`, `Select`, `Textarea`, `Sheet`, `Separator`, `Checkbox`) using Radix UI and utility functions.
- Established groundwork for client-server integration, state management, and modular UI development.
2025-10-31 21:46:03 +01:00

11 lines
182 B
Bash
Executable File

#!/bin/sh
# Wait for backend to be ready
echo "Waiting for backend..."
until nc -z backend 8000; do
sleep 1
done
echo "Backend is up!"
# Start the Next.js application
exec "$@"