- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
35 lines
991 B
YAML
35 lines
991 B
YAML
sudo: false
|
|
language: node_js
|
|
before_install:
|
|
- (test $NPM_LEGACY && npm install -g npm@2 && npm install -g npm@3) || true
|
|
notifications:
|
|
email: false
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- node_js: '0.8'
|
|
env: NPM_LEGACY=true
|
|
- node_js: '0.10'
|
|
env: NPM_LEGACY=true
|
|
- node_js: '0.11'
|
|
env: NPM_LEGACY=true
|
|
- node_js: '0.12'
|
|
env: NPM_LEGACY=true
|
|
- node_js: 1
|
|
env: NPM_LEGACY=true
|
|
- node_js: 2
|
|
env: NPM_LEGACY=true
|
|
- node_js: 3
|
|
env: NPM_LEGACY=true
|
|
- node_js: 4
|
|
- node_js: 5
|
|
- node_js: 6
|
|
- node_js: 7
|
|
- node_js: 8
|
|
- node_js: 9
|
|
script: "npm run test"
|
|
env:
|
|
global:
|
|
- secure: rE2Vvo7vnjabYNULNyLFxOyt98BoJexDqsiOnfiD6kLYYsiQGfr/sbZkPMOFm9qfQG7pjqx+zZWZjGSswhTt+626C0t/njXqug7Yps4c3dFblzGfreQHp7wNX5TFsvrxd6dAowVasMp61sJcRnB2w8cUzoe3RAYUDHyiHktwqMc=
|
|
- secure: g9YINaKAdMatsJ28G9jCGbSaguXCyxSTy+pBO6Ch0Cf57ZLOTka3HqDj8p3nV28LUIHZ3ut5WO43CeYKwt4AUtLpBS3a0dndHdY6D83uY6b2qh5hXlrcbeQTq2cvw2y95F7hm4D1kwrgZ7ViqaKggRcEupAL69YbJnxeUDKWEdI=
|