Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit c5e147a

Browse files
author
yuanzhe
committed
init
0 parents commit c5e147a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+6757
-0
lines changed

‎.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
.DS_Store
3+
db.json
4+
public

‎_config.yml

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Hexo Configuration
2+
## Docs: https://hexo.io/docs/configuration.html
3+
## Source: https://github.com/hexojs/hexo/
4+
5+
# Site
6+
title: 帮助中心
7+
subtitle: CODING
8+
description: Coding.net 是一个面向开发者的云端开发平台,提供 Git/SVN 代码托管、任务管理、在线 WebIDE、Cloud Studio、开发协作、文件管理、Wiki 管理、提供个人服务及企业版本的服务
9+
keywords: 项目管理、需求管理、缺陷管理、Bug Tracking、Bug管理、代码托管、代码评审、Code Review、敏捷开发、看板、迭代、流水线、Wiki、DevOps、Git、SVN、持续集成、CI、Jenkins、CD、测试管理、自动构建、Pages 服务、网页搭建、任务系统、研发管理
10+
author: CODING
11+
language:
12+
timezone:
13+
14+
# URL
15+
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
16+
url: https://help.coding.net/
17+
root: /
18+
permalink: :year/:month/:day/:title/
19+
permalink_defaults:
20+
21+
# Directory
22+
source_dir: source
23+
public_dir: public
24+
tag_dir: tags
25+
archive_dir: archives
26+
category_dir: categories
27+
code_dir: downloads/code
28+
i18n_dir: :lang
29+
skip_render:
30+
31+
# Writing
32+
new_post_name: :title.md # File name of new posts
33+
default_layout: page
34+
titlecase: false # Transform title into titlecase
35+
external_link: true # Open external links in new tab
36+
filename_case: 0
37+
render_drafts: false
38+
post_asset_folder: false
39+
relative_link: false
40+
future: true
41+
highlight:
42+
enable: true
43+
line_number: true
44+
auto_detect: false
45+
tab_replace:
46+
47+
# Home page setting
48+
# path: Root path for your blogs index page. (default = '')
49+
# per_page: Posts displayed per page. (0 = disable pagination)
50+
# order_by: Posts order. (Order by date descending by default)
51+
index_generator:
52+
path: ''
53+
per_page: 10
54+
order_by: -date
55+
56+
# Category & Tag
57+
default_category: uncategorized
58+
category_map:
59+
tag_map:
60+
61+
# Date / Time format
62+
## Hexo uses Moment.js to parse and display date
63+
## You can customize the date format as defined in
64+
## http://momentjs.com/docs/#/displaying/format/
65+
date_format: YYYY-MM-DD
66+
time_format: HH:mm:ss
67+
68+
# Pagination
69+
## Set per_page to 0 to disable pagination
70+
per_page: 10
71+
pagination_dir: page
72+
73+
# Extensions
74+
## Plugins: https://hexo.io/plugins/
75+
## Themes: https://hexo.io/themes/
76+
theme: coding-help
77+
78+
autoprefixer:
79+
exclude:
80+
- '*.min.css'
81+
overrideBrowserslist:
82+
- 'last 2 versions'
83+
84+
# Deployment
85+
## Docs: https://hexo.io/docs/deployment.html
86+
deploy:
87+
type:

‎package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "hexo-site",
3+
"version": "0.0.0",
4+
"private": true,
5+
"hexo": {
6+
"version": "3.9.0"
7+
},
8+
"dependencies": {
9+
"hexo": "^3.9.0",
10+
"hexo-autoprefixer": "^2.0.0",
11+
"hexo-generator-archive": "^0.1.5",
12+
"hexo-generator-category": "^0.1.3",
13+
"hexo-generator-index": "^0.2.1",
14+
"hexo-generator-tag": "^0.2.0",
15+
"hexo-renderer-ejs": "^0.3.1",
16+
"hexo-renderer-jade": "^0.4.1",
17+
"hexo-renderer-marked": "^1.0.1",
18+
"hexo-renderer-sass": "^0.4.0",
19+
"hexo-renderer-stylus": "^0.3.3",
20+
"hexo-server": "^0.3.3"
21+
}
22+
}

‎scaffolds/draft.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: {{ title }}
3+
tags:
4+
---

‎scaffolds/page.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: {{ title }}
3+
date: {{ date }}
4+
---

‎scaffolds/post.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: {{ title }}
3+
date: {{ date }}
4+
tags:
5+
---

‎source/_data/navigation.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
index:
2+
title: 帮助中心主页
3+
4+
sitemap:
5+
- compendium: 敏捷项目管理
6+
path: agile/
7+
icon: images/book-icons/agile.svg
8+
categories:
9+
- title: 测试管理
10+
path: agile/testing/
11+
links:
12+
- title: 团队成员快速入门团队成员快速入门团队成员快速入门
13+
path: agile/testing/team-quick-start.html
14+
- title: 测试计划介绍
15+
path: agile/testing/testing-plan-info.html
16+
- title: 迭代管理
17+
path: agile/iterator/
18+
links:
19+
- title: 迭代快速入门
20+
path: agile/testing/iterator-quick-start.html
21+
- title: 迭代计划介绍
22+
path: agile/testing/iterator-plan-info.html
23+
- compendium: 个人设置
24+
path: setting/
25+
icon: images/book-icons/coding.svg
26+
categories:
27+
- title: 个人测试管理
28+
path: setting/testing/
29+
links:
30+
- title: 个人团队成员快速入门
31+
path: setting/testing/team-quick-start.html
32+
- title: 个人测试计划介绍
33+
path: setting/testing/testing-plan-info.html
34+
- title: 个人迭代管理
35+
path: setting/iterator/
36+
links:
37+
- title: 个人迭代快速入门
38+
path: setting/testing/iterator-quick-start.html
39+
- title: 个人迭代计划介绍
40+
path: setting/testing/iterator-plan-info.html
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: Hello World
3+
---
4+
Welcome to [Hexo](https://hexo.io/)! This is your very first post. Check [documentation](https://hexo.io/docs/) for more info. If you get any problems when using Hexo, you can find the answer in [troubleshooting](https://hexo.io/docs/troubleshooting.html) or you can ask me on [GitHub](https://github.com/hexojs/hexo/issues).
5+
6+
## Quick Start
7+
8+
### Create a new post
9+
10+
``` bash
11+
$ hexo new "My New Post"
12+
```
13+
14+
More info: [Writing](https://hexo.io/docs/writing.html)
15+
16+
### Run server
17+
18+
``` bash
19+
$ hexo server
20+
```
21+
22+
More info: [Server](https://hexo.io/docs/server.html)
23+
24+
### Generate static files
25+
26+
``` bash
27+
$ hexo generate
28+
```
29+
30+
More info: [Generating](https://hexo.io/docs/generating.html)
31+
32+
### Deploy to remote sites
33+
34+
``` bash
35+
$ hexo deploy
36+
```
37+
38+
More info: [Deployment](https://hexo.io/docs/deployment.html)
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: Hello World
3+
---
4+
Welcome to [Hexo](https://hexo.io/)! This is your very first post. Check [documentation](https://hexo.io/docs/) for more info. If you get any problems when using Hexo, you can find the answer in [troubleshooting](https://hexo.io/docs/troubleshooting.html) or you can ask me on [GitHub](https://github.com/hexojs/hexo/issues).
5+
6+
## Quick Start
7+
8+
### Create a new post
9+
10+
``` bash
11+
$ hexo new "My New Post"
12+
```
13+
14+
More info: [Writing](https://hexo.io/docs/writing.html)
15+
16+
### Run server
17+
18+
``` bash
19+
$ hexo server
20+
```
21+
22+
More info: [Server](https://hexo.io/docs/server.html)
23+
24+
### Generate static files
25+
26+
``` bash
27+
$ hexo generate
28+
```
29+
30+
More info: [Generating](https://hexo.io/docs/generating.html)
31+
32+
### Deploy to remote sites
33+
34+
``` bash
35+
$ hexo deploy
36+
```
37+
38+
More info: [Deployment](https://hexo.io/docs/deployment.html)
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
---
2+
title: 5分钟快速入门 - 帮助中心 - CODING
3+
pageTitle: 5分钟快速入门
4+
pagePrev: agile/iterator/iterator-quick-start.html
5+
pagePrevTitle: 迭代快速入门
6+
pageNext: agile/testing/testing-plan-info.html
7+
pageNextTitle: 测试计划
8+
---
9+
Welcome to [Hexo](https://hexo.io/)! This is your very first post. Check [documentation](https://hexo.io/docs/) for more info. If you get any problems when using Hexo, you can find the answer in [troubleshooting](https://hexo.io/docs/troubleshooting.html) or you can ask me on [GitHub](https://github.com/hexojs/hexo/issues).
10+
11+
## Quick Start
12+
This is your very first post.
13+
14+
### Create a new post
15+
16+
``` bash
17+
$ hexo new "My New Post"
18+
```
19+
20+
More info: [Writing](https://hexo.io/docs/writing.html)
21+
22+
### Run server
23+
24+
``` bash
25+
$ hexo server
26+
```
27+
28+
More info: [Server](https://hexo.io/docs/server.html)
29+
30+
### Generate static files
31+
32+
``` bash
33+
$ hexo generate
34+
```
35+
36+
More info: [Generating](https://hexo.io/docs/generating.html)
37+
38+
### Deploy to remote sites
39+
40+
``` bash
41+
$ hexo deploy
42+
```
43+
44+
More info: [Deployment](https://hexo.io/docs/deployment.html)
45+
46+
## GGG
47+
This is your very first post.
48+
49+
### Generate static files
50+
51+
``` bash
52+
$ hexo generate
53+
```
54+
55+
More info: [Generating](https://hexo.io/docs/generating.html)
56+
57+
### Deploy to remote sites
58+
59+
``` bash
60+
$ hexo deploy
61+
```
62+
63+
More info: [Deployment](https://hexo.io/docs/deployment.html)

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /