forked from tjfoc/hyperledger-fabric-gm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
112 lines (100 loc) · 3.13 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
site_name: Hyperledger Fabric
site_url: http://hyperledger-fabric.readthedocs.io
theme: readthedocs
repo_url: https://github.com/hyperledger/fabric.git
site_description: 'Welcome to the Hyperledger fabric documentation'
strict: true
theme_dir: 'docs/custom_theme'
pages:
- Home: index.md
- Key Concepts:
- Overview: overview.md
- Why Fabric: whyfabric.md
- Use Cases: biz/usecases.md
- Glossary: glossary.md
- Transaction Data Model: data_model.md
- Security Model: security_model.md
- Multi Channel: multichannel.md
- Chaincode: smartcontract.md
- Consensus: consensus.md
- Getting Started:
- Network Components: included.md
- Setting up: asset_setup.md
- Asset Transfer through SDK: asset_sdk.md
- Using the CLI: asset_cli.md
- Troubleshooting: asset_trouble.md
- Application Interfaces:
- Node.js SDK: nodesdk.md
- Java SDK: javasdk.md
- Python SDK: pythonsdk.md
- Running Demos:
- Marbles: marbles.md
- Art Auction: auction.md
- CP Paper: paper.md
- Car Lease: carlease.md
- Tutorials:
- Understanding chaincode basics: chaincode.md
- Learn chaincode: learn_chaincode.md
- Understanding docker compose: dockercompose.md
- Sample application: sampleapp.md
- Developer videos: videos.md
- Administration and operations: adminops.md
- Debugging: debug.md
- Logging Control: Setup/logging-control.md
- Configuration Considerations:
- Best Practices: recipes.md
- Starting a network: bootstrap.md
- Architecture:
- Overview: architecture.md
- Deep Dive: arch-deep-dive.md
- Peer Nodes:
- Endorsers: endorser.md
- Committers: committer.md
- Policies & System Chaincode: endorsement-policies.md
- Ordering Service: orderingservice.md
- Pluggable Implementations: pluggableos.md
- Ledger: ledger.md
- Gossip: gossip.md
- Security & Cryptography: Setup/ca-setup.md
- Components: components.md
- Read/Write Set Semantics: readwrite.md
- Transaction Flow: txflow.md
- Getting Help:
- Troubleshooting: troubleshooting.md
- Appendix:
- Release notes: releases.md
- Contributing: CONTRIBUTING.md
- Development Process and Code:
- Getting an account: Gerrit/lf-account.md
- Maintainers: MAINTAINERS.md
- Navigating JIRA: jira_navigation.md
- Fabric developer setup: dev-setup/devenv.md
- Building fabric: dev-setup/build.md
- Gerrit: Gerrit/gerrit.md
- Committing code: Gerrit/changes.md
- Reviewing code: Gerrit/reviewing.md
- Best practices: Gerrit/best-practices.md
- Testing process: testing.md
- Style Guides:
- Golang: Style-guides/go-style.md
- Still Have Questions?: questions.md
- Criteria on quality: quality.md
- Status: status.md
- License: license.md
markdown_extensions:
- toc:
permalink: true
- admonition
- extra
- tables
- toc
- fenced_code
- smarty
- mdx_math:
enable_dollar_delimiter: True #for use of inline $..$
- footnotes
copyright: <br></br>Contributed to the Hyperledger Project under the <a href="https://github.com/hyperledger/fabric/blob/master/LICENSE" target="_blank">Apache Software License 2.0</a>