Skip to content

Commit

Permalink
更新文档,补充MacOS支持通过brew安装的说明
Browse files Browse the repository at this point in the history
  • Loading branch information
heqingpan committed Apr 20, 2024
1 parent 583d798 commit 60ae73d
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ r-nacos相较于java nacos来说,是一个提供相同功能,启动更快、

方式1:从 [github release](https://github.com/r-nacos/r-nacos/releases) 下载对应系统的应用包,解压后即可运行。

linux 或 mac
linux 或 MacOS

```shell
# 解压
Expand Down Expand Up @@ -99,6 +99,23 @@ cargo build --release
cargo run
```

方式5: MacOS支持通过brew安装

```shell
# 把r-nacos加入taps
brew tap r-nacos/r-nacos

# brew 安装 r-nacos
brew install r-nacos

# 运行
rnacos

# 后续可以直接通过以下命令更新到最新版本
# brew upgrade r-nacos
```


测试、试用推荐使用第1、第2种方式,直接下载就可以使用。

在linux下第1种方式默认是musl版本(性能比gnu版本差一些),在生产服务对性能有要求的可以考虑使用第2、第3、第4种在对应环境编译gnu版本部署。
Expand Down
18 changes: 18 additions & 0 deletions book/src/quick-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,24 @@ cargo build --release
cargo run
```


方式5: MacOS支持通过brew安装

```shell
# 把r-nacos加入taps
brew tap r-nacos/r-nacos

# brew 安装 r-nacos
brew install r-nacos

# 运行
rnacos

# 后续可以直接通过以下命令更新到最新版本
# brew upgrade r-nacos
```


测试、试用推荐使用第1、第2种方式,直接下载就可以使用。

在linux下第1、第2种方式默认是musl版本(性能比gnu版本差一些),在生产服务对性能有要求的可以考虑使用第3、第4种在对应环境编译gnu版本部署。
Expand Down

0 comments on commit 60ae73d

Please sign in to comment.