Move book dev instructions out of top-level readme

This commit is contained in:
Greg Fitzgerald 2018-12-13 10:25:25 -07:00
parent 9880a86f80
commit 3ce3f1adc1
2 changed files with 26 additions and 28 deletions

View File

@ -61,34 +61,6 @@ $ git clone https://github.com/solana-labs/solana.git
$ cd solana
```
Building the Solana book
---
Install mdbook:
```bash
cargo install mdbook
```
Run any Rust tests in the markdown:
```bash
make -C book test
```
Render markdown as HTML:
```bash
make -C book build
```
Render and view the book:
```bash
make -C book open
```
Testing
---

26
book/README.md Normal file
View File

@ -0,0 +1,26 @@
Building the Solana book
---
Install mdbook:
```bash
cargo install mdbook
```
Run any Rust tests in the markdown:
```bash
make test
```
Render markdown as HTML:
```bash
make build
```
Render and view the book:
```bash
make open
```