mdbook
This commit is contained in:
parent
84ae4bc101
commit
55254c92e0
|
@ -1,2 +1,3 @@
|
||||||
|
/book
|
||||||
/target
|
/target
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
12
README.md
12
README.md
|
@ -6,6 +6,18 @@
|
||||||
|
|
||||||
Software Defined Networking
|
Software Defined Networking
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
Serve docs locally from root of local clone of this repo:
|
||||||
|
|
||||||
|
```zsh
|
||||||
|
cargo install mdbook@0.4.40
|
||||||
|
```
|
||||||
|
|
||||||
|
```zsh
|
||||||
|
mdbook watch --open
|
||||||
|
```
|
||||||
|
|
||||||
## git repo URLs
|
## git repo URLs
|
||||||
|
|
||||||
- Main repo: https://git.nstr.no/nstr-sw/sdn
|
- Main repo: https://git.nstr.no/nstr-sw/sdn
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
[book]
|
||||||
|
authors = ["Nstr Software AS"]
|
||||||
|
language = "en"
|
||||||
|
multilingual = false
|
||||||
|
src = "docs"
|
||||||
|
title = "SDN"
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Summary
|
||||||
|
|
||||||
|
[Introduction](intro.md)
|
||||||
|
|
||||||
|
- [Commands](commands.md)
|
|
@ -0,0 +1,13 @@
|
||||||
|
# Commands
|
||||||
|
|
||||||
|
The following commands are available:
|
||||||
|
|
||||||
|
- [`sdn`](#sdn)
|
||||||
|
|
||||||
|
## sdn
|
||||||
|
|
||||||
|
The main binary is called `sdn`.
|
||||||
|
|
||||||
|
```zsh
|
||||||
|
cargo run --bin sdn --
|
||||||
|
```
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Introduction
|
||||||
|
|
||||||
|
Software Defined Networking
|
Loading…
Reference in New Issue