Skip to content

Commit

Permalink
fix: fix deployment guide
Browse files Browse the repository at this point in the history
  • Loading branch information
zensh committed Feb 20, 2025
1 parent 4df27c6 commit eca940b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
9 changes: 7 additions & 2 deletions agents/anda_bot/deployment_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cargo run -p anda_bot -- start-local

3. 在 linux 环境下可直接下载 anda_bot 可执行文件。
```sh
wget https://github.com/ldclabs/anda/releases/download/v0.4.0/anda_bot
wget https://github.com/ldclabs/anda/releases/download/v0.4.1/anda_bot
chmod +x anda_bot
```

Expand Down Expand Up @@ -65,7 +65,12 @@ cargo run -p anda_bot -- start-local
6. 启动 anda_bot
```sh
mkdir -p object_store
./anda_bot
nohup ./anda_bot start-local > bot.log 2>&1 &
```

查看 anda_bot 进程:
```sh
ps -aux | grep anda_bot
```

## 部署 TEE 版本
Expand Down
9 changes: 7 additions & 2 deletions agents/anda_bot/deployment_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ cargo run -p anda_bot -- start-local

3. Download the executable directly on Linux:
```sh
wget https://github.com/ldclabs/anda/releases/download/v0.4.0/anda_bot
wget https://github.com/ldclabs/anda/releases/download/v0.4.1/anda_bot
chmod +x anda_bot
```

Expand Down Expand Up @@ -66,7 +66,12 @@ cargo run -p anda_bot -- start-local
6. Start anda_bot
```sh
mkdir -p object_store
./anda_bot
nohup ./anda_bot start-local > bot.log 2>&1 &
```

Check the anda_bot process:
```sh
ps -aux | grep anda_bot
```

## Deploy TEE Version
Expand Down

0 comments on commit eca940b

Please sign in to comment.