mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-05 00:45:29 +08:00
23 lines
385 B
Bash
Executable File
23 lines
385 B
Bash
Executable File
#!/bin/bash
|
|
# WebUI 构建脚本
|
|
# 用法: ./scripts/build-webui.sh
|
|
|
|
set -e
|
|
|
|
echo "🔨 Building WebUI..."
|
|
|
|
cd "$(dirname "$0")/../webui"
|
|
|
|
# 检查 node_modules
|
|
if [ ! -d "node_modules" ]; then
|
|
echo "📦 Installing dependencies..."
|
|
npm install
|
|
fi
|
|
|
|
# 构建
|
|
echo "🏗️ Running build..."
|
|
npm run build
|
|
|
|
echo "✅ WebUI built successfully!"
|
|
echo "📁 Output: static/admin/"
|