Commit graph

5 commits

Author SHA1 Message Date
f12e858f74 Change default UI from minimal to suite 2025-12-10 21:55:25 -03:00
0143ad49b1 Implement real code, remove dead code
- AppState now uses BotServerClient directly
- BOTSERVER_URL env var support for configuration
- index() handler properly integrated into router
- Removed unused web module (DTOs were never used)
- Removed all #[allow(dead_code)] attributes
- Zero warnings, cargo audit clean
2025-12-04 09:33:31 -03:00
38fc25b2a2 Fix warnings: allow dead_code for future-use modules
- shared/state.rs: AppState prepared for future use
- ui_server/mod.rs: index() handler prepared
- web/mod.rs: DTOs for API layer
- shared/mod.rs: Removed unused imports (cargo fix)
2025-12-04 09:20:28 -03:00
09356bb28e Remove Tauri dependencies - botui is now pure web
Tauri-specific code has been moved to the botapp crate.

Changes:
- Removed tauri, tauri-plugin-*, trayicon, ksni dependencies
- Removed desktop feature flags
- Removed src/desktop/ module (moved to botapp)
- Removed tauri.conf.json (moved to botapp)
- Simplified build.rs (no tauri_build)
- Updated lib.rs and main.rs for pure web operation

Architecture:
- botui: Pure web UI (this crate) - no native deps
- botapp: Tauri wrapper that loads botui's suite

This separation allows:
- Same UI code for web, desktop, and mobile
- Clean dependency management
- App-specific features only in native app
2025-12-04 09:03:03 -03:00
5486318321 - Spliting from botserver. 2025-12-03 18:42:22 -03:00