github.com/leonlxy/hyperledger@v1.0.0-alpha.0.20170427033203-34922035d248/mkdocs.yml (about)

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