Merge remote-tracking branch 'upstream/master' into BranchName

This commit is contained in:
sunrq 2021-04-29 11:28:42 +08:00
commit 170c8fe2f9
5 changed files with 28 additions and 3 deletions

View File

@ -29,6 +29,19 @@ sudo apt update && sudo apt install yarn
### 安装vuepress
安装vuepress需要依赖v10.x以上的node.js在命令行输入以下命令以查看node.js版本
```
nodejs -v
```
如果版本过低导致安装失败输入以下命令安装新版的node.js其中版本号14可以根据node.js官网的最新版本更改
```
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs
```
可以为所有项目安装全局的唯一 vuepress
```bash

View File

@ -84,6 +84,10 @@ module.exports = {
text: '贡献代码',
link: '/community/contrib.html'
},
{
text: '完善文档',
link: '/community/webdoc.html'
},
{
text: '报告Bug',
link: '/community/bugreport.html'
@ -139,6 +143,11 @@ module.exports = {
children: getSidebarByCategory('demo','en')
},
],
'/community/': [
['contrib','贡献代码'],
['webdoc','完善文档'],
['bugreport','报告Bug']
],
'/about/': [
['xuos','泛在操作系统研究计划'],
['contact','联系方式'],

View File

@ -12,7 +12,7 @@ features:
- title: 生态友好标准兼容
details: 兼容POSIX标准支持主流硬件架构, 对Linux/RISC-V/ARM等生态的用户友好
footer: ©2020 北京大学信息技术高等研究院泛在操作系统实验室
footer: ©2021 北京大学信息技术高等研究院泛在操作系统实验室
---

3
docs/community/webdoc.md Normal file
View File

@ -0,0 +1,3 @@
# 为XiUOS 完善网站文档

File diff suppressed because one or more lines are too long