A mocked real-time vehicle monitoring system built with Angular and .NET.
The system displays vehicle statuses, connectivity, and last ping times with automatic updates every minute.
- Frontend: Angular 19
- Backend: .NET 9
- Database: SQLite
- Navigate to the
VehicleMonitoring.APIdirectory:cd VehicleMonitoring.API - Run the backend:
dotnet run
- Navigate to the
vehicle-monitoring-ui/appdirectory:cd vehicle-monitoring-ui/app - Install dependencies:
npm install
- Start the frontend server:
ng serve
- Navigate to: http://localhost:4200
- Navigate to: https://localhost:7001/swagger
- Navigate to the
VehicleMonitoring.API.Testsdirectory:cd VehicleMonitoring.API.Tests - Run tests:
dotnet test
- Navigate to the
vehicle-monitoring-ui/appdirectory:cd vehicle-monitoring-ui/app - Run tests:
ng test --watch=false