From f312d4e69c942053f66545cd173ac5b95882b5e3 Mon Sep 17 00:00:00 2001 From: ganesh47 <22994026+ganesh47@users.noreply.github.com> Date: Wed, 9 Mar 2022 21:45:45 +0530 Subject: [PATCH 1/3] Added english instructions for running locally using mdbook --- Readme.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Readme.md b/Readme.md index 3c511ac..3dc395e 100644 --- a/Readme.md +++ b/Readme.md @@ -8,6 +8,10 @@ This book was designed for easily diving into and get skilled with Rust, and it' - [https://practice.rs](https://practice.rs) +## Running locally + +This uses [mdbook](https://rust-lang.github.io/mdBook/).You can run locally by installing [mdbook](https://rust-lang.github.io/mdBook/guide/installation.html) using cargo and then using `mdbook serve` + ## Features Part of our examples and exercises are borrowed from [Rust By Example](https://github.com/rust-lang/rust-by-example), thanks for your great works! From 7891fb23749e6df241bd3c93c2b1141d9678cc9e Mon Sep 17 00:00:00 2001 From: Sunface Date: Thu, 10 Mar 2022 10:09:12 +0800 Subject: [PATCH 2/3] Update Readme.md --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 3dc395e..bd00130 100644 --- a/Readme.md +++ b/Readme.md @@ -4,7 +4,7 @@ This book was designed for easily diving into and get skilled with Rust, and it' > 🎊 Updated on 2022-03-09: Add [Type conversions - As](https://practice.rs/type-conversions/as.html) -## Read online +## Reading online - [https://practice.rs](https://practice.rs) From 31100d2f4815fc5c353c053d72d57614fcfefc7c Mon Sep 17 00:00:00 2001 From: Sunface Date: Thu, 10 Mar 2022 10:13:03 +0800 Subject: [PATCH 3/3] Update Readme.md --- Readme.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index bd00130..b5728ed 100644 --- a/Readme.md +++ b/Readme.md @@ -10,7 +10,11 @@ This book was designed for easily diving into and get skilled with Rust, and it' ## Running locally -This uses [mdbook](https://rust-lang.github.io/mdBook/).You can run locally by installing [mdbook](https://rust-lang.github.io/mdBook/guide/installation.html) using cargo and then using `mdbook serve` +We use [mdbook](https://rust-lang.github.io/mdBook/) building our exercises. You can run locally with below steps: +```shell +$ cargo install mdbook +$ cd rust-by-practice && mdbook serve +``` ## Features