From fcdd2a2628b23651fae9cc3d1c1903a1700dd827 Mon Sep 17 00:00:00 2001 From: pengshiyu <1940607002@qq.com> Date: Mon, 29 May 2023 11:08:30 +0800 Subject: [PATCH] fix --- CHANGELOG.md | 3 +++ README.md | 15 +++++++++++++-- domain_admin/version.py | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 190626fd73..981b364fac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ ## 更新日志 +- v1.2.18(2023-05-29) + - 新增:增加对.sg后缀的域名到期时间支持,感谢[@poctopus](https://github.com/poctopus)贡献代码 + - v1.2.17(2023-05-17) - 新增:增加对.jp后缀的域名到期时间支持 diff --git a/README.md b/README.md index fa7f8f3ffd..73a8cc58f5 100644 --- a/README.md +++ b/README.md @@ -88,19 +88,30 @@ mouday/domain-admin:latest ### 方式三:克隆源码运行 +本方式仅适用于二次开发,推荐采用 pip安装 或者 docker启动 的方式体验 + ```bash +# 后端项目 git clone https://github.com/mouday/domain-admin.git # 安装依赖 pip install -r requirements.txt -# 启动生产服务 -make pro +# 启动开发服务 +make dev + + +# 前端项目 +git clone https://github.com/mouday/domain-admin-web.git # 启动开发服务 make dev ``` +为了更多地人参与到项目中来,现已开放前端代码 + +前端项目地址:[https://github.com/mouday/domain-admin-web](https://github.com/mouday/domain-admin-web) + ## 项目简介 功能: diff --git a/domain_admin/version.py b/domain_admin/version.py index dfd38cb2ff..f61bbc285c 100755 --- a/domain_admin/version.py +++ b/domain_admin/version.py @@ -2,4 +2,4 @@ """ 版本号 """ -VERSION = '1.2.17' +VERSION = '1.2.18'