From e61bbd3c337faca109a73d80cd0b4874688278cc Mon Sep 17 00:00:00 2001 From: frank0417 Date: Mon, 20 Jul 2020 15:59:19 +0800 Subject: [PATCH 1/2] add cloumn 'goku_gateway_api.alias' --- build/console/resources/sql/goku_ce.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/build/console/resources/sql/goku_ce.sql b/build/console/resources/sql/goku_ce.sql index 6c143f5..c288638 100644 --- a/build/console/resources/sql/goku_ce.sql +++ b/build/console/resources/sql/goku_ce.sql @@ -166,6 +166,7 @@ CREATE TABLE "goku_gateway_api" ( "projectID" integer(11) NOT NULL, "requestURL" text(255) NOT NULL, "apiName" text(255) NOT NULL, + "alias" text(255) NOT NULL, "requestMethod" text(255) NOT NULL, "targetServer" text(255), "targetURL" text(255), From afad63f5649396f57571467abe8db56889286639 Mon Sep 17 00:00:00 2001 From: frank0417 Date: Mon, 20 Jul 2020 16:05:34 +0800 Subject: [PATCH 2/2] Fix static path error --- build/cmd/build-console.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/cmd/build-console.sh b/build/cmd/build-console.sh index 74d01be..3373f0d 100755 --- a/build/cmd/build-console.sh +++ b/build/cmd/build-console.sh @@ -12,7 +12,7 @@ OUTPATH="${BasePath}/out/console-${VERSION}" buildApp console $VERSION mkdir ${OUTPATH}/static -cp -a ${BasePath}/app/console/static/* ${OUTPATH}/static/ +cp -a ${BasePath}/build/console/resources/static/* ${OUTPATH}/static/ cp -a ${BasePath}/build/console/resources/* ${OUTPATH}/ chmod +x ${OUTPATH}/install.sh ${OUTPATH}/run.sh