From 334ec7b132d8e7204e896a9e469caebd88395b8a Mon Sep 17 00:00:00 2001 From: wangxianyu Date: Thu, 7 Sep 2023 15:04:37 +0800 Subject: [PATCH] add gitignore, delete gitignore dir or file --- .gitee/ISSUE_TEMPLATE.zh-CN.md | 13 ------- .gitee/PULL_REQUEST_TEMPLATE.zh-CN.md | 53 --------------------------- .gitignore | 7 +++- .idea/.gitignore | 8 ---- .idea/modules.xml | 8 ---- .idea/server-golib.iml | 9 ----- .idea/vcs.xml | 6 --- LICENSE | 2 +- todo.list | 5 ++- 9 files changed, 10 insertions(+), 101 deletions(-) delete mode 100644 .gitee/ISSUE_TEMPLATE.zh-CN.md delete mode 100644 .gitee/PULL_REQUEST_TEMPLATE.zh-CN.md delete mode 100644 .idea/.gitignore delete mode 100644 .idea/modules.xml delete mode 100644 .idea/server-golib.iml delete mode 100644 .idea/vcs.xml diff --git a/.gitee/ISSUE_TEMPLATE.zh-CN.md b/.gitee/ISSUE_TEMPLATE.zh-CN.md deleted file mode 100644 index f09d98d..0000000 --- a/.gitee/ISSUE_TEMPLATE.zh-CN.md +++ /dev/null @@ -1,13 +0,0 @@ -### 该问题是怎么引起的? - - - -### 重现步骤 - - - -### 报错信息 - - - - diff --git a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md deleted file mode 100644 index 0ed1c31..0000000 --- a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md +++ /dev/null @@ -1,53 +0,0 @@ -### 一、内容说明(相关的Issue) - - - -### 二、建议测试周期和提测地址 - 建议测试完成时间:xxxx.xx.xx - 投产上线时间:xxxx.xx.xx - 提测地址:CI环境/压测环境 - 测试账号: - -### 三、变更内容 - * 3.1 关联PR列表 - - * 3.2 数据库和部署说明 - 1. 常规更新 - 2. 重启unicorn - 3. 重启sidekiq - 4. 迁移任务:是否有迁移任务,没有写 "无" - 5. rake脚本:`bundle exec xxx RAILS_ENV = production`;没有写 "无" - - * 3.4 其他技术优化内容(做了什么,变更了什么) - - 重构了 xxxx 代码 - - xxxx 算法优化 - - - * 3.5 废弃通知(什么字段、方法弃用?) - - - - * 3.6 后向不兼容变更(是否有无法向后兼容的变更?) - - - -### 四、研发自测点(自测哪些?冒烟用例全部自测?) - 自测测试结论: - - -### 五、测试关注点(需要提醒QA重点关注的、可能会忽略的地方) - 检查点: - -| 需求名称 | 是否影响xx公共模块 | 是否需要xx功能 | 需求升级是否依赖其他子产品 | -|------|------------|----------|---------------| -| xxx | 否 | 需要 | 不需要 | -| | | | | - - 接口测试: - - 性能测试: - - 并发测试: - - 其他: - diff --git a/.gitignore b/.gitignore index 66fd13c..7c94d48 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,8 @@ *.so *.dylib -# Test binary, built with `go test -c` +# Test + binary, built with `go test -c` *.test # Output of the go coverage tool, specifically when used with LiteIDE @@ -13,3 +14,7 @@ # Dependency directories (remove the comment below to include it) # vendor/ +.gitee/ +.idea/ +.vscode/ + diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 37a90c5..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/server-golib.iml b/.idea/server-golib.iml deleted file mode 100644 index 5e764c4..0000000 --- a/.idea/server-golib.iml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/LICENSE b/LICENSE index 261eeb9..f54fa3b 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright [2023] [北京知新智同科技有限公司] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/todo.list b/todo.list index a43d1b6..bf9fb18 100644 --- a/todo.list +++ b/todo.list @@ -1,2 +1,3 @@ -- 解除库内和servicegplib的偶耦合 -- 修改log,增加日志切分和日志追踪 \ No newline at end of file +- 解除库内和service-go-lib的偶耦合 +- 修改log,增加日志切分和日志追踪 +- 增加framework,用于解耦库和业务。构建业务的时候,只需要引入framework即可 \ No newline at end of file -- Gitee