Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_cloud_native
提交
e8677705
S
skill_tree_cloud_native
项目概览
CSDN 技术社区
/
skill_tree_cloud_native
通知
14
Star
3
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_cloud_native
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
e8677705
编写于
2月 15, 2022
作者:
F
feilong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
初始化README
上级
f753b1cc
变更
7
显示空白变更内容
内联
并排
Showing
7 changed file
with
163 addition
and
2 deletion
+163
-2
README.md
README.md
+122
-1
data/1.云原生初阶/1.容器(docker)/1.安装docker/config.json
data/1.云原生初阶/1.容器(docker)/1.安装docker/config.json
+7
-1
data/1.云原生初阶/1.容器(docker)/1.安装docker/install_centos.json
data/1.云原生初阶/1.容器(docker)/1.安装docker/install_centos.json
+8
-0
data/1.云原生初阶/1.容器(docker)/1.安装docker/install_mac.json
data/1.云原生初阶/1.容器(docker)/1.安装docker/install_mac.json
+8
-0
data/1.云原生初阶/1.容器(docker)/1.安装docker/install_ubuntu.json
data/1.云原生初阶/1.容器(docker)/1.安装docker/install_ubuntu.json
+8
-0
data/1.云原生初阶/1.容器(docker)/1.安装docker/install_windows.json
data/1.云原生初阶/1.容器(docker)/1.安装docker/install_windows.json
+8
-0
requirements.txt
requirements.txt
+2
-0
未找到文件。
README.md
浏览文件 @
e8677705
# skill_tree_cloud_native
云原生技能树
\ No newline at end of file
`云原生技能树`
是
[
技能森林
](
https://gitcode.net/csdn/skill_tree
)
的一部分
## 初始化
```
bash
pip
install
-r
requirements.txt
```
## 目录结构说明
*
技能树
`骨架文件`
:
*
位置:
`data/tree.json`
*
说明:该文件是执行
`python main.py`
生成的,请勿人工编辑
*
技能树
`根节点`
配置文件:
*
位置:
`data/config.json`
*
说明:可编辑配置关键词等字段,其中
`node_id`
字段是生成的,请勿编辑
*
技能树
`难度节点`
:
*
位置:
`data/xxx`
,例如:
`data/1.云原生初阶`
*
说明:
*
每个技能树有 3 个等级,目录前的序号是必要的,用来保持文件夹目录的顺序
*
每个目录下有一个
`config.json`
可配置关键词信息,其中
`node_id`
字段是生成的,请勿编辑
*
技能树
`章节点`
:
*
位置:
`data/xxx/xxx`
,例如:
`data/1.云原生初阶/1.容器(docker)`
*
说明:
*
每个技能树的每个难度等级有 n 个章节,目录前的序号是必要的,用来保持文件夹目录的顺序
*
每个目录下有一个
`config.json`
可配置关键词信息,其中
`node_id`
字段是生成的,请勿编辑
*
技能树
`知识节点`
:
*
位置:
`data/xxx/xxx`
,例如:
`data/1.云原生初阶/1.容器(docker)`
*
说明:
*
每个技能树的每章有 n 个知识节点,目录前的序号是必要的,用来保持文件夹目录的顺序
*
每个目录下有一个
`config.json`
*
其中
`node_id`
字段是生成的,请勿编辑
*
其中
`keywords`
可配置关键字字段
*
其中
`children`
可配置该
`知识节点`
下的子树结构信息,参考后面描述
*
其中
`export`
可配置该
`知识节点`
下的导出习题信息,参考后面描述
## `知识节点` 子树信息结构
例如
`data/1.云原生初阶/1.容器(docker)/1.安装docker/config.json`
里配置对该知识节点子树信息结构:
```
json
{
//
...
"children"
:
[
],
}
```
## `知识节点` 的导出习题选项配置编辑
目前我们支持使用 markdown 语法直接编辑习题和各选项。
首先,编辑知识节点的配置,导出习题:
```
json
{
//
...
"export"
:
[
"install_windows.json"
]
}
```
然后在
`data/1.云原生初阶/1.容器(docker)/1.安装docker/`
下增加一个
`install_windows.json`
定义文件:
```
json
{
"type"
:
"code_options"
,
"author"
:
"ccat"
,
"source"
:
"install_windows.md"
,
"notebook_enable"
:
false
}
```
其中 type 字段目前都固定是
`code_options`
,notebook_enable 字段决定这个习题是否生成对应的 notebook 。根据具体情况写好其它字段,注意这里 source 的文件名,我们指定了一个 markdwon 文件。现在我们新建一个 install_windows.md 并编辑为:
````
mardown
# Windows下安装Docker
什么是`Docker`:
* `Docker` 将程序和程序运行所依赖的所有环境都打包到镜像里。“build once, run anywhere”
* `Docker` 是容器的一种实现。
Windows 下如何安装`Docker`:
* 官方安装教程:<https://docs.docker.com/desktop/windows/install/>
* 有两种安装套装,需要安装 WSL2 或者开启 Hyper-V and Containers 虚拟化特性。
* 注意如果你已经装了WSL,不想因为装WSL2破坏了WSL,那么最好选择“开启 Hyper-V and Containers 虚拟化特性”的这个方式。
* 无论哪种套装,安装“Docker Desktop” 并运行启动。
以下说法错误的是?
## 答案
容器只有`Docker`一种实现
## 选项
### A
Windows 上也能安装`Docker`
### B
通过构建 Docker,程序运行环境依赖的配置被极大简化
### C
Windows上安装的“Docker Desktop”可以随时卸载
````
## 技能树合成
在根目录下执行
`python main.py`
会合成技能树文件,合成的技能树文件:
`data/tree.json`
*
合成过程中,会自动检查每个目录下
`config.json`
里的
`node_id`
是否存在,不存在则生成
*
合成过程中,会自动检查每个知识点目录下
`config.json`
里的
`export`
里导出的习题配置,检查是否存在
`exercise_id`
字段,如果不存在则生成
data/1.云原生初阶/1.容器(docker)/1.安装docker/config.json
浏览文件 @
e8677705
...
...
@@ -2,7 +2,12 @@
"node_id"
:
"cloud_native-3eb56d157f784765b43f6f2ef0f28aac"
,
"keywords"
:
[],
"children"
:
[],
"export"
:
[],
"export"
:
[
"install_windows.json"
,
"install_mac.json"
,
"install_centos.json"
,
"install_ubuntu.json"
],
"keywords_must"
:
[],
"keywords_forbid"
:
[]
}
\ No newline at end of file
data/1.云原生初阶/1.容器(docker)/1.安装docker/install_centos.json
0 → 100644
浏览文件 @
e8677705
{
"type"
:
"code_options"
,
"author"
:
"huanhuilong"
,
"source"
:
"install_centos.md"
,
"notebook_enable"
:
false
,
"depends"
:
[]
}
\ No newline at end of file
data/1.云原生初阶/1.容器(docker)/1.安装docker/install_mac.json
0 → 100644
浏览文件 @
e8677705
{
"type"
:
"code_options"
,
"author"
:
"huanhuilong"
,
"source"
:
"install_mac.md"
,
"notebook_enable"
:
false
,
"depends"
:
[]
}
\ No newline at end of file
data/1.云原生初阶/1.容器(docker)/1.安装docker/install_ubuntu.json
0 → 100644
浏览文件 @
e8677705
{
"type"
:
"code_options"
,
"author"
:
"huanhuilong"
,
"source"
:
"install_ubuntu.md"
,
"notebook_enable"
:
false
,
"depends"
:
[]
}
\ No newline at end of file
data/1.云原生初阶/1.容器(docker)/1.安装docker/install_windows.json
0 → 100644
浏览文件 @
e8677705
{
"type"
:
"code_options"
,
"author"
:
"huanhuilong"
,
"source"
:
"install_windows.md"
,
"notebook_enable"
:
false
,
"depends"
:
[]
}
\ No newline at end of file
requirements.txt
0 → 100644
浏览文件 @
e8677705
pre_commit
~=2.16.0
skill-tree-parser
~=0.0.8
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录