sciagent code + Gitea Actions CI/CD
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user