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

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
```