标签:处理 doc 常用 命名 image reg class 提交代码 安全测试
目标:让新人能够快速上手开发友好速搭定制插件
npm audit fix
git规范
提交代码
格式
<type:提交 commit 的类型>(scope:修改文件的范围): <subject:用一句话清楚的描述这次提交做了什么>
<BLANK LINE>
<body补充 subject,适当增加原因、目的等相关因素,也可不写。>
<BLANK LINE>
<footer: 当有非兼容修改(Breaking Change)时必须在这里描述清楚,关联issue,如果功能点有新增或修改的,还需要关联文档 doc 和 egg-core 的 PR>
示例
fix($compile): [BREAKING_CHANGE] couple of unit tests for IE9
Older IEs serialize html uppercased, but IE9 does not...
Would be better to expect case insensitive, unfortunately jasmine does
not allow to user regexps for throw expectations.
Document change on eggjs/egg#123
Closes #392
BREAKING CHANGE:
Breaks foo.bar api, foo.baz should be used instead
项目文档规范
API文档
/**
* @api {GET} /api/v1/manager/course/:courseId/video 课程管理-查询课程的视频信息
* @apiVersion 1.0.0
* @apiName ManagerGetCourseVideo
* @apiGroup ManagerCourse
*
* @apiDescription 课程管理-查询课程的视频信息
*
* @apiParam (Path) {Number} courseId 课程ID
* @apiParam (Query) {Integer} [page=1]
* @apiParam (Query) {Integer} [limit=20]
* @apiParam (Query) {String} [name] 视频名称
* @apiParam (Query) {Date} [start_at] 上传开始时间
* @apiParam (Query) {Date} [end_at] 上传结束时间
*
* @apiSuccess {String} cover_url 视频封面信息
* @apiSuccess {String} name 视频姓名
* @apiSuccess {String} length 文件大小
* @apiSuccess {String} createdAt 上传时间
* @apiSuccessExample {json} 成功
* {"code":200,"data":{"data":[{"id":50000,"owner_id":1,"owner_name":"","file_id":"5285890787095402127","name":"spider-man","cover_url":...,"complete":1,"op_cnt":0,"createdAt":"2019-06-26T11:48:18.329Z","updatedAt":"2019-07-03T08:24:56.631Z"}],"paging":{"page":1,"pageSize":20,"total":1}},"msg":""}
*/
README模版
# demo
#### 介绍
这是一个测试项目
#### 软件架构
软件架构说明
#### 安装教程
1. xxxx
2. xxxx
3. xxxx
#### 使用说明
1. xxxx
2. xxxx
3. xxxx
#### 其他
1. xxxx
2. xxxx
3. xxxx
# 登陆镜像仓库
$ docker login -u user -p pw ccr.ccs.tencentyun.com
# 打包镜像
$ docker build -t ccr.ccs.tencentyun.com/yhsd/***:xxxx .
# 上传镜像
$ docker push ccr.ccs.tencentyun.com/yhsd/***:xxxx
# 删除本地镜像
$ docker rmi ccr.ccs.tencentyun.com/yhsd/***:xxxx
仅在集群内访问
标签:处理 doc 常用 命名 image reg class 提交代码 安全测试
原文地址:https://www.cnblogs.com/xulonglong/p/xin-ren-shou-ce.html