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.

82 lines
2.2 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: "Getting Started",
  15. collapsable: false,
  16. children: [
  17. "/introduction/quick-start",
  18. "/introduction/install",
  19. "/introduction/introduction"
  20. ]
  21. },
  22. {
  23. title: "Tendermint Core",
  24. collapsable: false,
  25. children: [
  26. "/tendermint-core/using-tendermint",
  27. "/tendermint-core/configuration",
  28. "/tendermint-core/rpc",
  29. "/tendermint-core/running-in-production",
  30. "/tendermint-core/how-to-read-logs",
  31. "/tendermint-core/block-structure",
  32. "/tendermint-core/light-client-protocol",
  33. "/tendermint-core/metrics",
  34. "/tendermint-core/secure-p2p",
  35. "/tendermint-core/validators"
  36. ]
  37. },
  38. {
  39. title: "Tendermint Tools",
  40. collapsable: false,
  41. children: ["tools/benchmarking", "tools/monitoring"]
  42. },
  43. {
  44. title: "Tendermint Networks",
  45. collapsable: false,
  46. children: [
  47. "/networks/deploy-testnets",
  48. "/networks/terraform-and-ansible",
  49. "/networks/fast-sync"
  50. ]
  51. },
  52. {
  53. title: "Application Development",
  54. collapsable: false,
  55. children: [
  56. "/app-dev/getting-started",
  57. "/app-dev/abci-cli",
  58. "/app-dev/app-architecture",
  59. "/app-dev/app-development",
  60. "/app-dev/subscribing-to-events-via-websocket",
  61. "/app-dev/indexing-transactions",
  62. "/app-dev/abci-spec",
  63. "/app-dev/ecosystem"
  64. ]
  65. },
  66. {
  67. title: "ABCI Specification",
  68. collapsable: false,
  69. children: [
  70. "/spec/abci/abci",
  71. "/spec/abci/apps",
  72. "/spec/abci/client-server"
  73. ]
  74. },
  75. {
  76. title: "Research",
  77. collapsable: false,
  78. children: ["/research/determinism", "/research/transactional-semantics"]
  79. }
  80. ]
  81. }
  82. };