## Backend Changes - Add new API endpoints: combustible, pois, mantenimiento, video, configuracion - Fix vehiculos endpoint to return paginated response with items array - Add /vehiculos/all endpoint for non-paginated list - Add /geocercas/all endpoint - Add /alertas/configuracion GET/PUT endpoints - Add /viajes/activos and /viajes/iniciar endpoints - Add /reportes/stats, /reportes/templates, /reportes/preview endpoints - Add /conductores/all and /conductores/disponibles endpoints - Update router.py to include all new modules ## Frontend Changes - Fix authentication token handling (snake_case vs camelCase) - Update vehiculosApi.listAll to use /vehiculos/all - Fix FuelGauge component usage in Combustible page - Fix chart component exports (named + default exports) - Update API client for proper token refresh ## Infrastructure - Rename services from ADAN to ATLAS - Configure Cloudflare tunnel for atlas.consultoria-as.com - Update systemd service files - Configure PostgreSQL with TimescaleDB - Configure Redis, Mosquitto, Traccar, MediaMTX ## Documentation - Update installation guides - Update API reference - Rename all ADAN references to ATLAS Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
87 lines
2.4 KiB
JSON
87 lines
2.4 KiB
JSON
{
|
|
"expo": {
|
|
"name": "Atlas Conductor",
|
|
"slug": "atlas-conductor",
|
|
"version": "1.0.0",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/icon.png",
|
|
"userInterfaceStyle": "light",
|
|
"splash": {
|
|
"image": "./assets/splash.png",
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#3b82f6"
|
|
},
|
|
"assetBundlePatterns": [
|
|
"**/*"
|
|
],
|
|
"ios": {
|
|
"supportsTablet": false,
|
|
"bundleIdentifier": "com.atlas.conductor",
|
|
"infoPlist": {
|
|
"NSLocationWhenInUseUsageDescription": "Necesitamos acceso a tu ubicación para rastrear el viaje",
|
|
"NSLocationAlwaysAndWhenInUseUsageDescription": "Necesitamos acceso continuo a tu ubicación para el seguimiento de rutas",
|
|
"NSLocationAlwaysUsageDescription": "Necesitamos acceso a tu ubicación en segundo plano",
|
|
"NSCameraUsageDescription": "Necesitamos acceso a la cámara para la función de dashcam",
|
|
"NSMicrophoneUsageDescription": "Necesitamos acceso al micrófono para grabar audio",
|
|
"UIBackgroundModes": [
|
|
"location",
|
|
"fetch",
|
|
"remote-notification"
|
|
]
|
|
}
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./assets/adaptive-icon.png",
|
|
"backgroundColor": "#3b82f6"
|
|
},
|
|
"package": "com.atlas.conductor",
|
|
"permissions": [
|
|
"ACCESS_COARSE_LOCATION",
|
|
"ACCESS_FINE_LOCATION",
|
|
"ACCESS_BACKGROUND_LOCATION",
|
|
"CAMERA",
|
|
"RECORD_AUDIO",
|
|
"RECEIVE_BOOT_COMPLETED",
|
|
"VIBRATE",
|
|
"WAKE_LOCK",
|
|
"FOREGROUND_SERVICE"
|
|
],
|
|
"config": {
|
|
"googleMaps": {
|
|
"apiKey": "YOUR_GOOGLE_MAPS_API_KEY"
|
|
}
|
|
}
|
|
},
|
|
"plugins": [
|
|
[
|
|
"expo-location",
|
|
{
|
|
"locationAlwaysAndWhenInUsePermission": "Atlas necesita tu ubicación para rastrear viajes, incluso en segundo plano.",
|
|
"isAndroidBackgroundLocationEnabled": true,
|
|
"isIosBackgroundLocationEnabled": true
|
|
}
|
|
],
|
|
[
|
|
"expo-camera",
|
|
{
|
|
"cameraPermission": "Permitir a Atlas acceder a tu cámara para la función dashcam"
|
|
}
|
|
],
|
|
[
|
|
"expo-notifications",
|
|
{
|
|
"icon": "./assets/notification-icon.png",
|
|
"color": "#3b82f6",
|
|
"sounds": ["./assets/notification-sound.wav"]
|
|
}
|
|
]
|
|
],
|
|
"extra": {
|
|
"eas": {
|
|
"projectId": "your-project-id"
|
|
}
|
|
}
|
|
}
|
|
}
|