From 373957cb253281869d6b1085a838d338cc0d83ed Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Thu, 5 Feb 2026 22:52:12 -0300 Subject: [PATCH] Fix: Add embed-ui to default features Production binaries should embed UI assets by default to avoid requiring external ui/suite folder in deployment. This ensures botserver binary contains all HTMX, HTML, CSS, and JS assets needed for the web interface. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cd10bf56c..acd66a1e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ features = ["database", "i18n"] [features] # ===== DEFAULT ===== -default = ["chat", "automation", "drive", "tasks", "cache", "directory", "llm", "crawler"] +default = ["chat", "automation", "drive", "tasks", "cache", "directory", "llm", "crawler", "embed-ui"] # ===== CORE INFRASTRUCTURE (Can be used standalone) ===== scripting = ["dep:rhai"]