config.js 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. module.exports = {
  2. title: "数字化交付参考文档",
  3. description: "上格云数字化交付参考文档",
  4. base: "/docs/",
  5. // plugins: ["@vuepress/last-updated"],
  6. plugins: ['@vuepress/back-to-top'],
  7. markdown: {
  8. lineNumbers: true
  9. },
  10. themeConfig: {
  11. logo: "/assets/img/logo.png",
  12. nav: [
  13. {text: "首页", link: "/"},
  14. {text: "安装部署", link: "/deploy/"},
  15. {
  16. text: "开发文档",
  17. items: [
  18. {
  19. text: "后台开发",
  20. items: [
  21. {text: "数据中心", link: "/datacenter/"},
  22. {text: "模型管理", link: "/module/"}
  23. ]
  24. },
  25. {
  26. text: "Revit二开",
  27. items: [
  28. {text: "服务端Revit", link: "/revit/datacenter/"},
  29. {text: "Revit插件", link: "/revit/module/"}
  30. ]
  31. },
  32. {
  33. text: "Web开发",
  34. items: [
  35. { text: "Sybotan Graphy 引擎", link: "http://docs.sybotan.com:88/api/web/graphy/" }
  36. ]
  37. },
  38. {
  39. text: "移动端开发",
  40. items: [
  41. { text: "Sybotan Graphy 引擎", link: "http://docs.sybotan.com:88/api/web/graphy/" }
  42. ]
  43. }
  44. ]
  45. },
  46. {
  47. text: "API参考",
  48. items: [
  49. {
  50. text: "后台开发",
  51. items: [
  52. { text: "Sybotan Graphy 引擎", link: "http://docs.sybotan.com:88/api/web/graphy/" }
  53. ]
  54. },
  55. {
  56. text: "Web开发",
  57. items: [
  58. { text: "Sybotan Graphy 引擎", link: "http://docs.sybotan.com:88/api/web/graphy/" }
  59. ]
  60. },
  61. {
  62. text: "移动端开发",
  63. items: [
  64. { text: "Sybotan Graphy 引擎", link: "http://docs.sybotan.com:88/api/web/graphy/" }
  65. ]
  66. }
  67. ]
  68. },
  69. {text: "编码风格", link: "/style/"}
  70. ],
  71. displayAllHeaders: true,
  72. sidebarDepth: 2,
  73. sidebar: {
  74. "/deploy/": [
  75. ["/deploy/", "安装部署"],
  76. {
  77. title: "基于 CentOS 安装",
  78. path: "/deploy/centos/",
  79. children: [
  80. {
  81. title: "操作系统",
  82. path: "/deploy/centos/os/",
  83. children: [
  84. ["/deploy/centos/os/install", "安装系统"],
  85. ["/deploy/centos/os/config", "配置系统"],
  86. ["/deploy/centos/os/cmd", "常用命令"]
  87. ]
  88. },
  89. {
  90. title: "基础服务",
  91. path: "/deploy/centos/server/",
  92. children: [
  93. ["/deploy/centos/server/nginx", "Nginx"],
  94. ["/deploy/centos/server/jdk", "JDK"],
  95. ["/deploy/centos/server/tomcat", "Tomcat"],
  96. ["/deploy/centos/server/python", "Python"],
  97. ["/deploy/centos/server/postgresql", "PostgreSQL"],
  98. ]
  99. },
  100. {
  101. title: "应用服务",
  102. path: "/deploy/centos/app-server/",
  103. children: [
  104. // ["/deploy/centos/app-server/datacenter", "数据中心"],
  105. // ["/deploy/centos/app-server/pointconfig", "点位配置"],
  106. // ["/deploy/centos/app-server/ibms", "慧运营后台"],
  107. // ["/deploy/centos/app-server/scanbuilding", "扫楼后台"]
  108. ]
  109. }
  110. ]
  111. },
  112. {
  113. title: "基于 Windows 安装",
  114. path: "/deploy/windows/",
  115. children: []
  116. }
  117. ]
  118. }
  119. }
  120. };