sciagent code + Gitea Actions CI/CD
CI/CD / backend (push) Failing after 2m8s
CI/CD / frontend (push) Failing after 1m40s
CI/CD / deploy (push) Has been skipped

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Thinh Lam
2026-06-30 09:38:30 +07:00
commit 688fac73e9
1167 changed files with 158244 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
@echo off
REM Khởi động cả 2 frontend (fe0 + fe-admin) trong 2 cửa sổ riêng
REM Yêu cầu: Node.js 20+ đã cài
setlocal
set ROOT=%~dp0..
echo [1/2] Khởi động fe0 (User frontend) - http://localhost:8080
start "fe0 - User Frontend" cmd /k "cd /d %ROOT%\fe0 && (if not exist node_modules npm install) && npm run dev"
timeout /t 2 /nobreak >nul
echo [2/2] Khởi động fe-admin (Admin frontend) - http://localhost:8082
start "fe-admin - Admin Frontend" cmd /k "cd /d %ROOT%\fe-admin && (if not exist node_modules npm install) && npm run dev"
echo.
echo Da khoi dong 2 frontend trong 2 cua so rieng.
echo - User UI: http://localhost:8080
echo - Admin UI: http://localhost:8082
echo.
echo Backend .NET (DYD.Api) chay rieng tu Visual Studio (F5).
endlocal