feat: Scaffold UI 및 로직 9자리 Target System Code 지원 업데이트
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 31s

- 폐쇄망 환경을 위한 Bootstrap 등 정적 자원 로컬화 (cdn -> vendor) 적용

- Target System Code를 9자리(예: ONBTI2370)까지 입력받을 수 있도록 수정

- 9자리 입력 시, 2~5번째 문자를 추출하여 패키지 경로 및 Client 클래스 명명에 사용하도록 ToolScaffolder 로직 변경

- IO DTO 이름 생성 규칙(interfaceId -> ioPrefix) 수정
This commit is contained in:
jade
2026-08-25 17:50:55 +09:00
parent 182d50a373
commit bb8020b99c
5 changed files with 100 additions and 57 deletions

View File

@@ -6,7 +6,14 @@
<title>Tool Auto Tester</title>
<script src="/lib/tailwindcss.js"></script>
<script src="/lib/chart.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<style>
:root {
--font-sans: 'Geist Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
--font-mono: 'Geist Mono', SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
body, .font-sans { font-family: var(--font-sans); }
code, pre, .font-mono { font-family: var(--font-mono); }
</style>
<style>
* { font-family: 'Geist', sans-serif; }
body { background-color: #09090b; color: #f4f4f5; }