Race Board is a monitoring application designed to visualize and analyze racetrack data. It provides a user-friendly interface to track performance metrics, visualize data trends, and gain insights into racing activities.
![]() |
![]() |
![]() |
![]() |
The application supports three modes:
Perfect for UI development and testing without any API. Generates realistic mock data:
APP_MODE=SIMULATION
Use case: Frontend development, UI testing, demos without backend
Connects to your local development API server:
APP_MODE=DEV
API_URL=http://192.168.1.100:3000
Use case: Testing with real API during development
Connects to production API server:
APP_MODE=PROD
API_URL=http://your-production-server.com:3000
Use case: Production deployment with live data
bun install
bun run dev
To run unit tests, use the following command:
bun run test
To check for linting issues, run:
bun run lint
To format the codebase, use:
bun run format
Contributions are welcome! To contribute:
git checkout -b feature/your-feature-name