Merge pull request #269 from caorufu/patch-1

更新本地运行此电子书的说明,在win 10系统中须指定ip地址
This commit is contained in:
Sunface 2022-07-18 09:21:03 +08:00 committed by GitHub
commit 2cca8dfeaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -26,7 +26,10 @@
$ cargo install mdbook
$ cd rust-by-practice && mdbook serve
```
在本地win 10或者linux服务器上运行时应当使用 -n 参数指定mdbook服务所监听的IP地址-p 参数指定服务监听的端口不指定则为默认的3000以win 10本地运行为例
```shell
$ mdbook serve -p 8888 -n 127.0.0.1
```
## 特性
部分示例和习题借鉴了 [Rust By Example](https://github.com/rust-lang/rust-by-example), 书中的示例真的非常棒!