https://github.com/simovilab/databus-app
Cross-platform mobile application for bus drivers and fleet operators to collect real-time vehicle telemetry and GPS tracking
https://github.com/simovilab/databus-app
capacitor ionic mobility-data vue
Last synced: 8 months ago
JSON representation
Cross-platform mobile application for bus drivers and fleet operators to collect real-time vehicle telemetry and GPS tracking
- Host: GitHub
- URL: https://github.com/simovilab/databus-app
- Owner: simovilab
- Created: 2025-05-21T22:31:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-01T13:50:13.000Z (10 months ago)
- Last Synced: 2025-08-01T15:43:46.808Z (10 months ago)
- Topics: capacitor, ionic, mobility-data, vue
- Language: TypeScript
- Homepage: https://simovilab.github.io/databus-app/
- Size: 1.31 MB
- Stars: 43
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Operational Mobile App
Cross-platform mobile application for bus drivers, trip dispatchers and fleet operators to collect real-time vehicle telemetry, GPS tracking, and operational events.
## References
(Work in progress)
- [Figma](https://www.figma.com/proto/ycNjVgCw07pfJcLdXdWEeK/bUCR?node-id=91-1859&t=x2cUCvlbCoUTnBEd-1): Prototipo de la aplicación móvil
- [Google Sheets](https://docs.google.com/spreadsheets/d/1fmHEGEc7xYAvA4p_RRfGVPQrZNYWkDINNFxcZWkvaqI/edit?usp=sharing): Acciones y _endpoints_ de la API
- [Databús API](https://databus.bucr.digital/api/docs/): Documentación de la API de Databús
## Algo aquí
```mermaid
flowchart TD
Splash
IsLoggedIn
Login
subgraph TABS
Home
Runs
Alerts
Profile
end
subgraph HOME
subgraph HOME-SEGMENTS
Info
History
end
end
subgraph RUNS
subgraph MODAL
RunSetup
end
RunProgress
end
subgraph ALERTS
subgraph ALERTS-SEGMENTS
ActiveAlerts
Messages
end
end
subgraph PROFILE
ProfileInfo
subgraph PM[MODAL]
EditProfile
end
end
Splash --> IsLoggedIn
IsLoggedIn --"yes"--> TABS
IsLoggedIn --"no"--> Login
Login --> TABS
Home --> HOME
Runs --> RUNS
Alerts --> ALERTS
Profile --> PROFILE
RunSetup --> RunProgress
ProfileInfo --> EditProfile
```