gitlab.com/gpdionisio/tendermint@v0.34.19-dev2/docs/.vuepress/config.js (about)

     1  module.exports = {
     2    theme: 'cosmos',
     3    title: 'Tendermint Core',
     4    // locales: {
     5    //   "/": {
     6    //     lang: "en-US"
     7    //   },
     8    //   "/ru/": {
     9    //     lang: "ru"
    10    //   }
    11    // },
    12    base: process.env.VUEPRESS_BASE,
    13    themeConfig: {
    14      repo: 'tendermint/tendermint',
    15      docsRepo: 'tendermint/tendermint',
    16      docsDir: 'docs',
    17      editLinks: true,
    18      label: 'core',
    19      algolia: {
    20        id: "BH4D9OD16A",
    21        key: "59f0e2deb984aa9cdf2b3a5fd24ac501",
    22        index: "tendermint"
    23      },
    24      versions: [
    25        {
    26          "label": "v0.33",
    27          "key": "v0.33"
    28        },
    29        {
    30          "label": "v0.34",
    31          "key": "v0.34"
    32        },
    33        {
    34          "label": "v0.35",
    35          "key": "v0.35"
    36        }
    37      ],
    38      topbar: {
    39        banner: false,
    40      },
    41      sidebar: {
    42        auto: true,
    43        nav: [
    44          {
    45            title: 'Resources',
    46            children: [
    47              {
    48                title: 'Developer Sessions',
    49                path: '/DEV_SESSIONS.html'
    50              },
    51              {
    52                // TODO(creachadair): Figure out how to make this per-branch.
    53                // See: https://github.com/tendermint/tendermint/issues/7908
    54                title: 'RPC',
    55                path: 'https://docs.tendermint.com/v0.35/rpc/',
    56                static: true
    57              },
    58            ]
    59          }
    60        ]
    61      },
    62      gutter: {
    63        title: 'Help & Support',
    64        editLink: true,
    65        forum: {
    66          title: 'Tendermint Forum',
    67          text: 'Join the Tendermint forum to learn more',
    68          url: 'https://forum.cosmos.network/c/tendermint',
    69          bg: '#0B7E0B',
    70          logo: 'tendermint'
    71        },
    72        github: {
    73          title: 'Found an Issue?',
    74          text: 'Help us improve this page by suggesting edits on GitHub.'
    75        }
    76      },
    77      footer: {
    78        question: {
    79          text: 'Chat with Tendermint developers in <a href=\'https://discord.gg/vcExX9T\' target=\'_blank\'>Discord</a> or reach out on the <a href=\'https://forum.cosmos.network/c/tendermint\' target=\'_blank\'>Tendermint Forum</a> to learn more.'
    80        },
    81        logo: '/logo-bw.svg',
    82        textLink: {
    83          text: 'tendermint.com',
    84          url: 'https://tendermint.com'
    85        },
    86        services: [
    87          {
    88            service: 'medium',
    89            url: 'https://medium.com/@tendermint'
    90          },
    91          {
    92            service: 'twitter',
    93            url: 'https://twitter.com/tendermint_team'
    94          },
    95          {
    96            service: 'linkedin',
    97            url: 'https://www.linkedin.com/company/tendermint/'
    98          },
    99          {
   100            service: 'reddit',
   101            url: 'https://reddit.com/r/cosmosnetwork'
   102          },
   103          {
   104            service: 'telegram',
   105            url: 'https://t.me/cosmosproject'
   106          },
   107          {
   108            service: 'youtube',
   109            url: 'https://www.youtube.com/c/CosmosProject'
   110          }
   111        ],
   112        smallprint:
   113          'The development of Tendermint Core is led primarily by [Interchain GmbH](https://interchain.berlin/). Funding for this development comes primarily from the Interchain Foundation, a Swiss non-profit. The Tendermint trademark is owned by Tendermint Inc, the for-profit entity that also maintains this website.',
   114        links: [
   115          {
   116            title: 'Documentation',
   117            children: [
   118              {
   119                title: 'Cosmos SDK',
   120                url: 'https://docs.cosmos.network'
   121              },
   122              {
   123                title: 'Cosmos Hub',
   124                url: 'https://hub.cosmos.network'
   125              }
   126            ]
   127          },
   128          {
   129            title: 'Community',
   130            children: [
   131              {
   132                title: 'Tendermint blog',
   133                url: 'https://medium.com/@tendermint'
   134              },
   135              {
   136                title: 'Forum',
   137                url: 'https://forum.cosmos.network/c/tendermint'
   138              }
   139            ]
   140          },
   141          {
   142            title: 'Contributing',
   143            children: [
   144              {
   145                title: 'Contributing to the docs',
   146                url: 'https://github.com/tendermint/tendermint'
   147              },
   148              {
   149                title: 'Source code on GitHub',
   150                url: 'https://github.com/tendermint/tendermint'
   151              },
   152              {
   153                title: 'Careers at Tendermint',
   154                url: 'https://tendermint.com/careers'
   155              }
   156            ]
   157          }
   158        ]
   159      }
   160    },
   161    plugins: [
   162      [
   163        '@vuepress/google-analytics',
   164        {
   165          ga: 'UA-51029217-11'
   166        }
   167      ],
   168      [
   169        '@vuepress/plugin-html-redirect',
   170        {
   171          countdown: 0
   172        }
   173      ]
   174    ]
   175  };