This commit is contained in:
Mateusz Gruszczyński
2026-08-23 23:20:00 +02:00
parent 8bb12a1782
commit b23578a0c8
34 changed files with 2300 additions and 447 deletions
+9
View File
@@ -60,6 +60,15 @@ install_build_dependencies() {
fi
}
build_web_assets_if_available() {
local tailwind="$PROJECT_ROOT/node_modules/.bin/tailwindcss"
if [[ -x "$tailwind" ]]; then
"$PROJECT_ROOT/scripts/build-web.sh"
else
say "Using committed offline Web UI CSS (web/styles.css)"
fi
}
ensure_rust() {
if command -v cargo >/dev/null 2>&1; then
return 0