mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-08 12:57:13 +08:00
build: 优化模块命名 continew-webapi => continew-server,continew-module-system => continew-system
This commit is contained in:
4
.github/workflows/deploy.yml
vendored
4
.github/workflows/deploy.yml
vendored
@@ -35,7 +35,7 @@ jobs:
|
||||
port: ${{ secrets.SERVER_PORT }}
|
||||
username: ${{ secrets.SERVER_USERNAME }}
|
||||
password: ${{ secrets.SERVER_PASSWORD }}
|
||||
source: ./continew-webapi/target/app/*
|
||||
source: ./continew-server/target/app/*
|
||||
target: /docker/continew-admin
|
||||
strip_components: 3
|
||||
# 5、启动
|
||||
@@ -48,5 +48,5 @@ jobs:
|
||||
password: ${{ secrets.SERVER_PASSWORD }}
|
||||
script: |
|
||||
cd /docker
|
||||
docker-compose up --force-recreate --build -d continew-admin-server
|
||||
docker-compose up --force-recreate --build -d continew-server
|
||||
docker images | grep none | awk '{print $3}' | xargs docker rmi
|
||||
|
@@ -283,7 +283,7 @@ git clone https://github.com/continew-org/continew-admin.git
|
||||
|
||||
```
|
||||
continew-admin
|
||||
├─ continew-webapi(API 及打包部署模块)
|
||||
├─ continew-server(API 及打包部署模块)
|
||||
│ ├─ src
|
||||
│ │ ├─ main
|
||||
│ │ │ ├─ java/top/continew/admin
|
||||
@@ -309,7 +309,7 @@ continew-admin
|
||||
│ │ │ └─ logback-spring.xml(日志配置文件)
|
||||
│ │ └─ test(测试相关代码目录)
|
||||
│ └─ pom.xml(包含打包相关配置)
|
||||
├─ continew-module-system(系统管理模块,存放系统管理相关业务功能,例如:部门管理、角色管理、用户管理等)
|
||||
├─ continew-system(系统管理模块,存放系统管理相关业务功能,例如:部门管理、角色管理、用户管理等)
|
||||
│ ├─ src
|
||||
│ │ ├─ main
|
||||
│ │ │ ├─ java/top/continew/admin
|
||||
|
@@ -9,7 +9,7 @@
|
||||
<version>${revision}</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>continew-webapi</artifactId>
|
||||
<artifactId>continew-server</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>${project.artifactId}</name>
|
||||
@@ -31,7 +31,7 @@
|
||||
<!-- 系统管理模块 -->
|
||||
<dependency>
|
||||
<groupId>top.continew</groupId>
|
||||
<artifactId>continew-module-system</artifactId>
|
||||
<artifactId>continew-system</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- 任务调度插件 -->
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
@@ -9,7 +9,7 @@
|
||||
<version>${revision}</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>continew-module-system</artifactId>
|
||||
<artifactId>continew-system</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>${project.artifactId}</name>
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user