Add protocol pages
This commit is contained in:
parent
b75e114c79
commit
35d0ef20b3
5 changed files with 25 additions and 0 deletions
|
@ -23,6 +23,11 @@ export default currentUrl => {
|
||||||
title: "LBRY overview",
|
title: "LBRY overview",
|
||||||
url: "/overview"
|
url: "/overview"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "Protocols",
|
||||||
|
title: "LBRY Protocols",
|
||||||
|
url: "/protocols"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "Playground",
|
name: "Playground",
|
||||||
title: "Experience LBRY",
|
title: "Experience LBRY",
|
||||||
|
|
8
documents/protocols.md
Normal file
8
documents/protocols.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Protocols
|
||||||
|
description: Understand how LBRY works low level and build your own implementations.
|
||||||
|
---
|
||||||
|
|
||||||
|
- [Content Protocol](/protocols/content)
|
||||||
|
- [DHT Protocol](/protocols/dht)
|
||||||
|
- [Reflector Protocol](/protocols/reflector)
|
4
documents/protocols/content.md
Normal file
4
documents/protocols/content.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: Content Protocol
|
||||||
|
description: The protocol used to download blobs.
|
||||||
|
---
|
4
documents/protocols/dht.md
Normal file
4
documents/protocols/dht.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: DHT Protocol
|
||||||
|
description: The protocol used to find other nodes.
|
||||||
|
---
|
4
documents/protocols/reflector.md
Normal file
4
documents/protocols/reflector.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: Reflector Protocol
|
||||||
|
description: The protocol used to upload blobs.
|
||||||
|
---
|
Loading…
Add table
Reference in a new issue