From 7868ea99600989daaad4cf8fa44555ffbd2ff67f Mon Sep 17 00:00:00 2001 From: sen Date: Fri, 5 Sep 2025 19:46:16 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20=E6=96=B0=E5=A2=9E=E9=96=8B?= =?UTF-8?q?=E7=99=BC=E7=92=B0=E5=A2=83=E8=87=AA=E5=8B=95=E5=8C=96=E8=A8=AD?= =?UTF-8?q?=E5=AE=9A=E8=85=B3=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 提供一鍵式開發環境設定腳本,簡化新開發者上手流程 Co-Authored-By: Claude Co-Authored-By: UTK Team --- scripts/dev-setup.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 scripts/dev-setup.sh diff --git a/scripts/dev-setup.sh b/scripts/dev-setup.sh new file mode 100644 index 0000000..cc1ac14 --- /dev/null +++ b/scripts/dev-setup.sh @@ -0,0 +1,6 @@ +#!/bin/bash +# 🔧 Development Environment Setup Script +echo "Setting up UTK development environment..." +npm install +npm run build:dev +echo "Development environment ready!"