Merge remote-tracking branch 'upstream/master' into BranchName
This commit is contained in:
commit
170c8fe2f9
13
README.md
13
README.md
|
@ -29,6 +29,19 @@ sudo apt update && sudo apt install yarn
|
||||||
|
|
||||||
### 安装vuepress
|
### 安装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
|
可以为所有项目安装全局的唯一 vuepress
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
|
@ -84,6 +84,10 @@ module.exports = {
|
||||||
text: '贡献代码',
|
text: '贡献代码',
|
||||||
link: '/community/contrib.html'
|
link: '/community/contrib.html'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
text: '完善文档',
|
||||||
|
link: '/community/webdoc.html'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: '报告Bug',
|
text: '报告Bug',
|
||||||
link: '/community/bugreport.html'
|
link: '/community/bugreport.html'
|
||||||
|
@ -139,6 +143,11 @@ module.exports = {
|
||||||
children: getSidebarByCategory('demo','en')
|
children: getSidebarByCategory('demo','en')
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
'/community/': [
|
||||||
|
['contrib','贡献代码'],
|
||||||
|
['webdoc','完善文档'],
|
||||||
|
['bugreport','报告Bug']
|
||||||
|
],
|
||||||
'/about/': [
|
'/about/': [
|
||||||
['xuos','泛在操作系统研究计划'],
|
['xuos','泛在操作系统研究计划'],
|
||||||
['contact','联系方式'],
|
['contact','联系方式'],
|
||||||
|
|
|
@ -12,7 +12,7 @@ features:
|
||||||
- title: 生态友好标准兼容
|
- title: 生态友好标准兼容
|
||||||
details: 兼容POSIX标准,支持主流硬件架构, 对Linux/RISC-V/ARM等生态的用户友好
|
details: 兼容POSIX标准,支持主流硬件架构, 对Linux/RISC-V/ARM等生态的用户友好
|
||||||
|
|
||||||
footer: ©2020 北京大学信息技术高等研究院泛在操作系统实验室
|
footer: ©2021 北京大学信息技术高等研究院泛在操作系统实验室
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
# 为XiUOS 完善网站文档
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue