Big Change Update

This commit is contained in:
yeongpin
2025-01-14 14:47:41 +08:00
parent 380ea0b81d
commit 19fe4c85f8
651 changed files with 366654 additions and 17 deletions

21
build.sh Normal file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
echo "正在創建虛擬環境..."
python3 -m venv venv
echo "啟動虛擬環境..."
source venv/bin/activate
echo "安裝依賴..."
python -m pip install --upgrade pip
pip install -r requirements.txt
echo "開始構建..."
python build.py
echo "清理虛擬環境..."
deactivate
rm -rf venv
echo "完成!"
read -p "按任意鍵退出..."