Files
rtgs/run-frontend.cmd
rtgs 58ca23b5d9 Initialize RTGS prototype repository
3센터 A-A-A RTGS 실시간총액결제 프로토타입 최초 버전관리 시작.
- backend: Kotlin/Gradle 멀티모듈(sequencer, common, 채널/센터 모듈)
- frontend: Vite + TS
- infra: docker-compose, prometheus/grafana, ELK 네이티브 스크립트
- loadtest(k6), sim(장애/순서/정합성 시나리오), docs(PoC 보고서/복원력방안)
2026-07-15 15:37:32 +09:00

11 lines
294 B
Batchfile

@echo off
rem RTGS 조회 콘솔(:5174). Chanel(:8091)로 프록시.
call C:\ai-dev\scripts\env.cmd
cd /d "%~dp0frontend"
if not exist node_modules (
echo [run-frontend] installing dependencies...
call npm install
)
echo [run-frontend] npm run dev (http://localhost:5174)
call npm run dev