A web-based clone of the board game Trio, built with Bun for the backend and Vite React for the frontend.
- Players aim to form three pairs of cards to win.
- Cards can be taken from the center or other players' hands.
To build and run both the backend and frontend with Docker Compose:
docker compose up --buildcd backend
bun install
bun run devcd trio_frontend
npm install
npm run devVITE_API_BASE_URL=http://localhost:3000
CLIENT_URL=http://localhost:5173- Real-time gameplay with Bun API.
- React-based dynamic UI.
- Dockerized environment for easy deployment.