PaiGramDocs/docs/.vitepress/sidebar.ts

23 lines
597 B
TypeScript
Raw Normal View History

2023-10-20 17:15:41 +00:00
export default {
'/': [
{
text: '🚀 快速上手',
collapsed: true,
items: [
{ text: '环境检查', link: '/quick-start/env' },
2023-10-21 05:28:21 +00:00
{ text: '安装项目', link: '/quick-start/install' },
2023-10-20 17:15:41 +00:00
{ text: '配置项目', link: '/quick-start/config' },
{ text: '启动项目', link: '/quick-start/run' },
],
},
2023-10-21 06:05:25 +00:00
{
text: '👷 Docker 相关',
collapsed: true,
items: [
{ text: 'Docker 快速部署', link: '/docker/docker' },
{ text: 'Podman 快速部署', link: '/docker/podman' },
],
},
2023-10-20 17:15:41 +00:00
],
}