File size: 1,311 Bytes
69fec20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
# macOS 安装脚本 (支持 Intel 和 Apple Silicon)

# 确保 Homebrew 已安装
if ! command -v brew &> /dev/null; then
    echo "未检测到 Homebrew,开始安装..."
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    
    # 检测 Homebrew 安装路径并设置环境变量
    if [[ -f "/opt/homebrew/bin/brew" ]]; then
        # Apple Silicon Mac
        eval "$(/opt/homebrew/bin/brew shellenv)"
    elif [[ -f "/usr/local/bin/brew" ]]; then
        # Intel Mac
        eval "$(/usr/local/bin/brew shellenv)"
    fi
fi

# 更新 brew 并安装 git
brew update
brew install git

# 安装 uv (Python 环境管理工具)
curl -Ls https://astral.sh/uv/install.sh | sh

# 确保 uv 在 PATH 中
export PATH="$HOME/.local/bin:$PATH"

# 克隆或进入项目目录
if [ -f "./web.py" ]; then
    # 已经在目标目录
    :
elif [ -f "./gcli2api/web.py" ]; then
    cd ./gcli2api
else
    git clone https://github.com/su-kaka/gcli2api.git
    cd ./gcli2api
fi

# 拉取最新代码
git pull

# 创建并同步虚拟环境
uv sync

# 激活虚拟环境
if [ -f ".venv/bin/activate" ]; then
    source .venv/bin/activate
else
    echo "❌ 未找到虚拟环境,请检查 uv 是否安装成功"
    exit 1
fi

# 启动项目
python3 web.py