You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,30 @@ Articles should be relatively short and self-contained so that they can be read
15
15
Detailed explanation of InnerSource topics should go in the [InnerSource Patterns] book and be linked from the article here.
16
16
Think of the articles in this book like either a conversational introduction/summary to a pattern or possible a journey showing how multiple patterns can be used together in an InnerSource Program.
17
17
18
+
## Building the Book Locally
19
+
20
+
The book is built with [mdBook](https://rust-lang.github.io/mdBook/).
21
+
You don't need to install anything manually — the helper scripts handle everything.
22
+
23
+
**Build the book** (output goes to `book/`):
24
+
25
+
```sh
26
+
make build
27
+
```
28
+
29
+
**Live-preview with auto-reload** (opens a local web server):
30
+
31
+
```sh
32
+
make serve
33
+
```
34
+
35
+
On the first run, the scripts will automatically install Rust and mdBook into the
36
+
repo-local `.cargo/` and `.rustup/` directories (these are git-ignored).
37
+
Subsequent runs reuse the existing install and start immediately.
38
+
39
+
> **Windows users:** Run these scripts in **Git Bash** (included with
40
+
> [Git for Windows](https://gitforwindows.org/)) or in WSL.
41
+
18
42
## Who can contribute?
19
43
20
44
This book is a work in progress where anyone is more than welcome to contribute
0 commit comments