github.com/myafeier/fabric@v1.0.1-0.20170722181825-3a4b1f2bce86/mkdocs.yml (about)

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