feat: add Docker deployment and Microsoft OAuth support

This commit is contained in:
2026-04-18 14:02:24 +08:00
parent 6704cfb418
commit e69c0dd226
53 changed files with 5139 additions and 4029 deletions

View File

@@ -1,16 +1,16 @@
@echo off
rem 构建前端静态产物到 mengpost-frontend\dist
setlocal
set ROOT=%~dp0
cd /d %ROOT%mengpost-frontend
if not exist node_modules (
call npm install || goto :err
)
call npm run build || goto :err
echo.
echo 前端已构建: %ROOT%mengpost-frontend\dist
endlocal & exit /b 0
:err
echo 构建失败
endlocal & exit /b 1
@echo off
rem 构建前端静态产物到 mengpost-frontend\dist
setlocal
set ROOT=%~dp0
cd /d %ROOT%mengpost-frontend
if not exist node_modules (
call npm install || goto :err
)
call npm run build || goto :err
echo.
echo 前端已构建: %ROOT%mengpost-frontend\dist
endlocal & exit /b 0
:err
echo 构建失败
endlocal & exit /b 1