SSoAuth: fix buid and run

This commit is contained in:
pavelbannov 2021-06-22 19:44:09 +03:00
parent 89d9ea6297
commit d8abde6d88
3 changed files with 10 additions and 7 deletions

View File

@ -1,11 +1,13 @@
PUSHD %~dp0.. PUSHD %~dp0..
dotnet build ASC.Web.sln /fl1 /flp1:LogFile=build/ASC.Web.log;Verbosity=Normal dotnet build ASC.Web.sln /fl1 /flp1:LogFile=build/ASC.Web.log;Verbosity=Normal
echo "ASC.UrlShortener" @echo off
call build\scripts\urlshortener.sh
echo "ASC.Thumbnails" if %errorlevel% == 0 (
call build\scripts\thumbnails.sh for /R "build\scripts\" %%f in (*.sh) do (
echo "%%~nxf"
call build\scripts\%%~nxf
)
)
echo "ASC.Socket.IO" pause
call build\scripts\socket.sh

1
build/scripts/ssoauth.sh Normal file
View File

@ -0,0 +1 @@
yarn install --cwd common/ASC.SsoAuth --frozen-lockfile

View File

@ -8,7 +8,7 @@
"log__name": "sso", "log__name": "sso",
"log__dir": "../../../Logs", "log__dir": "../../../Logs",
"core__products__folder": "../../../products", "core__products__folder": "../../../products",
"ASPNETCORE_URLS": "http://localhost:5025", "ASPNETCORE_URLS": "http://localhost:5024",
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }
}, },