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.

81 lines
2.0 KiB

  1. module.exports = {
  2. title: "Tendermint Core",
  3. description: "Documentation for Tendermint Core",
  4. dest: "./site-docs",
  5. base: "/",
  6. markdown: {
  7. lineNumbers: true
  8. },
  9. themeConfig: {
  10. lastUpdated: 'Last Updated',
  11. nav: [
  12. { text: 'Back to Tendermint', link: 'https://tendermint.com' },
  13. ],
  14. sidebar: [
  15. {
  16. title: "Getting Started",
  17. collapsable: false,
  18. children: [
  19. "/introduction/quick-start",
  20. "/introduction/install",
  21. "/introduction/introduction",
  22. ]
  23. },
  24. {
  25. title: "Tendermint Core",
  26. collapsable: false,
  27. children: [
  28. "/tendermint-core/using-tendermint",
  29. "/tendermint-core/configuration",
  30. "/tendermint-core/rpc",
  31. "/tendermint-core/running-in-production",
  32. "/tendermint-core/how-to-read-logs",
  33. "/tendermint-core/block-structure",
  34. "/tendermint-core/light-client-protocol",
  35. "/tendermint-core/metrics",
  36. "/tendermint-core/secure-p2p",
  37. "/tendermint-core/validators",
  38. ]
  39. },
  40. {
  41. title: "Tendermint Tools",
  42. collapsable: false,
  43. children: [
  44. "tools/benchmarking",
  45. "tools/monitoring",
  46. ]
  47. },
  48. {
  49. title: "Tendermint Networks",
  50. collapsable: false,
  51. children: [
  52. "/networks/deploy-testnets",
  53. "/networks/terraform-and-ansible",
  54. "/networks/fast-sync",
  55. ]
  56. },
  57. {
  58. title: "Application Development",
  59. collapsable: false,
  60. children: [
  61. "/app-dev/getting-started",
  62. "/app-dev/abci-cli",
  63. "/app-dev/app-architecture",
  64. "/app-dev/app-development",
  65. "/app-dev/subscribing-to-events-via-websocket",
  66. "/app-dev/indexing-transactions",
  67. "/app-dev/abci-spec",
  68. "/app-dev/ecosystem",
  69. ]
  70. },
  71. {
  72. title: "Research",
  73. collapsable: false,
  74. children: [
  75. "/research/determinism",
  76. "/research/transactional-semantics",
  77. ]
  78. },
  79. ]
  80. }
  81. }