From 47626e599a9245c5e7a67cbc7907a376b9794ab0 Mon Sep 17 00:00:00 2001 From: Alexey Safronov Date: Tue, 28 Nov 2023 15:43:48 +0400 Subject: [PATCH] Removed useless files and scripts for ASC.TelegramReports --- config/telegram.json | 6 ------ install/common/build-services.sh | 8 +------- 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 config/telegram.json diff --git a/config/telegram.json b/config/telegram.json deleted file mode 100644 index 5d45b96df5..0000000000 --- a/config/telegram.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "telegramConf": { - "botKey": "", - "chatId": "" - } -} diff --git a/install/common/build-services.sh b/install/common/build-services.sh index 4480e6f8f4..fe72785d3c 100644 --- a/install/common/build-services.sh +++ b/install/common/build-services.sh @@ -7,7 +7,7 @@ BUILD_PATH=${BUILD_PATH:-${SRC_PATH}/publish} BUILD_DOTNET_CORE_ARGS=${BUILD_DOTNET_CORE_ARGS:-"false"} PROPERTY_BUILD=${PROPERTY_BUILD:-"all"} -BACKEND_NODEJS_SERVICES=${BACKEND_NODEJS_SERVICES:-"ASC.Socket.IO, ASC.SsoAuth"} #, ASC.TelegramReports +BACKEND_NODEJS_SERVICES=${BACKEND_NODEJS_SERVICES:-"ASC.Socket.IO, ASC.SsoAuth"} BACKEND_DOTNETCORE_SERVICES=${BACKEND_DOTNETCORE_SERVICES:-"ASC.Files, ASC.People, ASC.Data.Backup, ASC.Files.Service, ASC.Notify, \ ASC.Studio.Notify, ASC.Web.Api, ASC.Web.Studio, ASC.Data.Backup.BackgroundTasks, ASC.ClearEvents, ASC.ApiSystem, ASC.Web.HealthChecks.UI"} SELF_CONTAINED=${SELF_CONTAINED:-"false"} @@ -180,12 +180,6 @@ function backend-nodejs-publish { mkdir -p ${BUILD_PATH}/services/${ARRAY_NAME_SERVICES[$i]}/service/ && \ cp -rfv ${SRC_PATH}/server/common/${ARRAY_NAME_SERVICES[$i]}/* ${BUILD_PATH}/services/${ARRAY_NAME_SERVICES[$i]}/service/ - if [[ ${ARRAY_NAME_SERVICES[$i]} == "ASC.TelegramReports" ]] - then - # build before run - yarn --cwd ${BUILD_PATH}/services/ASC.TelegramReports/service/ build - fi - if [[ ${DOCKER_ENTRYPOINT} != "false" ]] then echo "== ADD ${DOCKER_ENTRYPOINT} to ${ARRAY_NAME_SERVICES[$i]} =="