Tauri desktop shell (reuses web/ frontend, connects to OpenAI-compatible endpoint, isolated in desktop/) (#24)

* Add Tauri desktop shell

* Update desktop setup after web UI merge

* Declare desktop bundle icons
This commit is contained in:
ZacharyZcR
2026-07-12 07:40:21 +08:00
committed by GitHub
parent 57730f6196
commit 5198feec7c
17 changed files with 4525 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
tauri::Builder::default()
.run(tauri::generate_context!())
.expect("failed to run the colibri desktop application");
}
+5
View File
@@ -0,0 +1,5 @@
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() {
colibri_desktop_lib::run();
}