mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-09 08:57:16 +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 }}
|
port: ${{ secrets.SERVER_PORT }}
|
||||||
username: ${{ secrets.SERVER_USERNAME }}
|
username: ${{ secrets.SERVER_USERNAME }}
|
||||||
password: ${{ secrets.SERVER_PASSWORD }}
|
password: ${{ secrets.SERVER_PASSWORD }}
|
||||||
source: ./continew-webapi/target/app/*
|
source: ./continew-server/target/app/*
|
||||||
target: /docker/continew-admin
|
target: /docker/continew-admin
|
||||||
strip_components: 3
|
strip_components: 3
|
||||||
# 5、启动
|
# 5、启动
|
||||||
@@ -48,5 +48,5 @@ jobs:
|
|||||||
password: ${{ secrets.SERVER_PASSWORD }}
|
password: ${{ secrets.SERVER_PASSWORD }}
|
||||||
script: |
|
script: |
|
||||||
cd /docker
|
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
|
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-admin
|
||||||
├─ continew-webapi(API 及打包部署模块)
|
├─ continew-server(API 及打包部署模块)
|
||||||
│ ├─ src
|
│ ├─ src
|
||||||
│ │ ├─ main
|
│ │ ├─ main
|
||||||
│ │ │ ├─ java/top/continew/admin
|
│ │ │ ├─ java/top/continew/admin
|
||||||
@@ -309,7 +309,7 @@ continew-admin
|
|||||||
│ │ │ └─ logback-spring.xml(日志配置文件)
|
│ │ │ └─ logback-spring.xml(日志配置文件)
|
||||||
│ │ └─ test(测试相关代码目录)
|
│ │ └─ test(测试相关代码目录)
|
||||||
│ └─ pom.xml(包含打包相关配置)
|
│ └─ pom.xml(包含打包相关配置)
|
||||||
├─ continew-module-system(系统管理模块,存放系统管理相关业务功能,例如:部门管理、角色管理、用户管理等)
|
├─ continew-system(系统管理模块,存放系统管理相关业务功能,例如:部门管理、角色管理、用户管理等)
|
||||||
│ ├─ src
|
│ ├─ src
|
||||||
│ │ ├─ main
|
│ │ ├─ main
|
||||||
│ │ │ ├─ java/top/continew/admin
|
│ │ │ ├─ java/top/continew/admin
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<version>${revision}</version>
|
<version>${revision}</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-webapi</artifactId>
|
<artifactId>continew-server</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>${project.artifactId}</name>
|
<name>${project.artifactId}</name>
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
<!-- 系统管理模块 -->
|
<!-- 系统管理模块 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>top.continew</groupId>
|
<groupId>top.continew</groupId>
|
||||||
<artifactId>continew-module-system</artifactId>
|
<artifactId>continew-system</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- 任务调度插件 -->
|
<!-- 任务调度插件 -->
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
@@ -9,7 +9,7 @@
|
|||||||
<version>${revision}</version>
|
<version>${revision}</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>continew-module-system</artifactId>
|
<artifactId>continew-system</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>${project.artifactId}</name>
|
<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