You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
3.3 KiB

  1. module.exports = {
  2. title: "Tendermint Core",
  3. description: "Documentation for Tendermint Core",
  4. dest: "./dist/docs",
  5. base: "/docs/",
  6. markdown: {
  7. lineNumbers: true
  8. },
  9. themeConfig: {
  10. lastUpdated: "Last Updated",
  11. nav: [{ text: "Back to Tendermint", link: "https://tendermint.com" }],
  12. sidebar: [
  13. {
  14. title: "Introduction",
  15. collapsable: false,
  16. children: [
  17. "/introduction/",
  18. "/introduction/quick-start",
  19. "/introduction/install",
  20. "/introduction/what-is-tendermint"
  21. ]
  22. },
  23. {
  24. title: "Tendermint Core",
  25. collapsable: false,
  26. children: [
  27. "/tendermint-core/",
  28. "/tendermint-core/using-tendermint",
  29. "/tendermint-core/configuration",
  30. "/tendermint-core/rpc",
  31. "/tendermint-core/running-in-production",
  32. "/tendermint-core/fast-sync",
  33. "/tendermint-core/how-to-read-logs",
  34. "/tendermint-core/block-structure",
  35. "/tendermint-core/light-client-protocol",
  36. "/tendermint-core/metrics",
  37. "/tendermint-core/secure-p2p",
  38. "/tendermint-core/validators"
  39. ]
  40. },
  41. {
  42. title: "Tools",
  43. collapsable: false,
  44. children: [
  45. "/tools/",
  46. "/tools/benchmarking",
  47. "/tools/monitoring"
  48. ]
  49. },
  50. {
  51. title: "Networks",
  52. collapsable: false,
  53. children: [
  54. "/networks/",
  55. "/networks/docker-compose",
  56. "/networks/terraform-and-ansible",
  57. ]
  58. },
  59. {
  60. title: "Apps",
  61. collapsable: false,
  62. children: [
  63. "/app-dev/getting-started",
  64. "/app-dev/abci-cli",
  65. "/app-dev/app-architecture",
  66. "/app-dev/app-development",
  67. "/app-dev/subscribing-to-events-via-websocket",
  68. "/app-dev/indexing-transactions",
  69. "/app-dev/abci-spec",
  70. "/app-dev/ecosystem"
  71. ]
  72. },
  73. {
  74. title: "Tendermint Spec",
  75. collapsable: true,
  76. children: [
  77. "/spec/",
  78. "/spec/blockchain/blockchain",
  79. "/spec/blockchain/encoding",
  80. "/spec/blockchain/state",
  81. "/spec/software/abci",
  82. "/spec/consensus/bft-time",
  83. "/spec/consensus/consensus",
  84. "/spec/consensus/light-client",
  85. "/spec/software/wal",
  86. "/spec/p2p/config",
  87. "/spec/p2p/connection",
  88. "/spec/p2p/node",
  89. "/spec/p2p/peer",
  90. "/spec/reactors/block_sync/reactor",
  91. "/spec/reactors/block_sync/impl",
  92. "/spec/reactors/consensus/consensus",
  93. "/spec/reactors/consensus/consensus-reactor",
  94. "/spec/reactors/consensus/proposer-selection",
  95. "/spec/reactors/evidence/reactor",
  96. "/spec/reactors/mempool/concurrency",
  97. "/spec/reactors/mempool/config",
  98. "/spec/reactors/mempool/functionality",
  99. "/spec/reactors/mempool/messages",
  100. "/spec/reactors/mempool/reactor",
  101. "/spec/reactors/pex/pex",
  102. "/spec/reactors/pex/reactor",
  103. ]
  104. },
  105. {
  106. title: "ABCI Spec",
  107. collapsable: false,
  108. children: [
  109. "/spec/abci/",
  110. "/spec/abci/abci",
  111. "/spec/abci/apps",
  112. "/spec/abci/client-server"
  113. ]
  114. }
  115. ]
  116. }
  117. };