1
13693261870
2024-08-17 338542a06f2f07f2b095c32439753779e18938b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh
 
# 复制项目的文件到对应docker路径,便于一键生成镜像。
usage() {
    echo "Usage: sh copy.sh"
    exit 1
}
 
 
# copy sql
echo "begin copy sql "
cp ../sql/ry_20231130.sql ./mysql/db
cp ../sql/ry_config_20231204.sql ./mysql/db
 
# copy html
echo "begin copy html "
cp -r ../se-ui/dist/** ./nginx/html/dist
 
 
# copy jar
echo "begin copy se-gateway "
cp ../se-gateway/target/se-gateway.jar ./se/gateway/jar
 
echo "begin copy se-auth "
cp ../se-auth/target/se-auth.jar ./se/auth/jar
 
echo "begin copy se-visual "
cp ../se-visual/se-monitor/target/se-visual-monitor.jar  ./se/visual/monitor/jar
 
echo "begin copy se-modules-system "
cp ../se-modules/se-system/target/se-modules-system.jar ./se/modules/system/jar
 
echo "begin copy se-modules-file "
cp ../se-modules/se-file/target/se-modules-file.jar ./se/modules/file/jar
 
echo "begin copy se-modules-job "
cp ../se-modules/se-job/target/se-modules-job.jar ./se/modules/job/jar
 
echo "begin copy se-modules-gen "
cp ../se-modules/se-gen/target/se-modules-gen.jar ./se/modules/gen/jar