Compare commits

...

4 Commits

Author SHA1 Message Date
kjh2064 24f288655f refactor(wbs-ux): route root authenticated users to Vue templates and map SPA fallback
Validators (Pushes and Pull Requests) / WBS & Audit Validations (push) Has been skipped
Validators (Pushes and Pull Requests) / .NET Contracts (push) Has been skipped
Validators (Pushes and Pull Requests) / UI & Storage Validation (push) Failing after 14s
Validators (Pushes and Pull Requests) / Core Validators & Database Setup (push) Failing after 23s
Validators (Pushes and Pull Requests) / Database & Schema Validation (push) Successful in 13s
Validators (Pushes and Pull Requests) / CI Workflow Lint (push) Failing after 11s
Validators (Pushes and Pull Requests) / Notify PR Results (push) Has been skipped
Validators (Pushes and Pull Requests) / Calibration & Performance (push) Has been skipped
Validators (Pushes and Pull Requests) / Operational Report & Decision Packet (push) Has been skipped
Validators (Pushes and Pull Requests) / Security & Secrets (push) Successful in 12s
2026-07-25 11:51:24 +09:00
kjh2064 1a06a01018 ui(wbs-ux): inject prototype gallery link to CSHTML server layout navigation menu
Validators (Pushes and Pull Requests) / Core Validators & Database Setup (push) Failing after 22s
Validators (Pushes and Pull Requests) / Security & Secrets (push) Successful in 12s
Validators (Pushes and Pull Requests) / Notify PR Results (push) Has been skipped
Validators (Pushes and Pull Requests) / UI & Storage Validation (push) Failing after 10s
Validators (Pushes and Pull Requests) / Database & Schema Validation (push) Successful in 13s
Validators (Pushes and Pull Requests) / WBS & Audit Validations (push) Has been skipped
Validators (Pushes and Pull Requests) / .NET Contracts (push) Has been skipped
Validators (Pushes and Pull Requests) / Calibration & Performance (push) Has been skipped
Validators (Pushes and Pull Requests) / Operational Report & Decision Packet (push) Has been skipped
Validators (Pushes and Pull Requests) / CI Workflow Lint (push) Failing after 10s
2026-07-25 11:50:34 +09:00
kjh2064 7668fff294 fix(wbs-ux): resolve vite 8 build type errors, install missing xlsx dependency and fix ag-grid cellstyle
Validators (Pushes and Pull Requests) / UI & Storage Validation (push) Failing after 11s
Validators (Pushes and Pull Requests) / Core Validators & Database Setup (push) Failing after 24s
Validators (Pushes and Pull Requests) / WBS & Audit Validations (push) Has been skipped
Validators (Pushes and Pull Requests) / .NET Contracts (push) Has been skipped
Validators (Pushes and Pull Requests) / Calibration & Performance (push) Has been skipped
Validators (Pushes and Pull Requests) / Database & Schema Validation (push) Successful in 12s
Validators (Pushes and Pull Requests) / Operational Report & Decision Packet (push) Has been skipped
Validators (Pushes and Pull Requests) / Security & Secrets (push) Successful in 13s
Validators (Pushes and Pull Requests) / CI Workflow Lint (push) Failing after 12s
Validators (Pushes and Pull Requests) / Notify PR Results (push) Has been skipped
2026-07-25 11:45:05 +09:00
kjh2064 a8e6479193 ci(wbs-ux): inject Vue 3 frontend build task to release compilation pipeline
Validators (Pushes and Pull Requests) / Database & Schema Validation (push) Successful in 11s
Validators (Pushes and Pull Requests) / UI & Storage Validation (push) Failing after 13s
Validators (Pushes and Pull Requests) / Core Validators & Database Setup (push) Failing after 20s
Validators (Pushes and Pull Requests) / WBS & Audit Validations (push) Has been skipped
Validators (Pushes and Pull Requests) / Operational Report & Decision Packet (push) Has been skipped
Validators (Pushes and Pull Requests) / Notify PR Results (push) Has been skipped
Workflow Lint & Validation / Notify Lint Results (push) Failing after 1s
Validators (Pushes and Pull Requests) / .NET Contracts (push) Has been skipped
Validators (Pushes and Pull Requests) / Calibration & Performance (push) Has been skipped
Validators (Pushes and Pull Requests) / CI Workflow Lint (push) Failing after 12s
Validators (Pushes and Pull Requests) / Security & Secrets (push) Successful in 12s
Workflow Lint & Validation / Validate Secrets Contract (push) Successful in 7s
Workflow Lint & Validation / Lint All Workflow Files (push) Failing after 14s
2026-07-25 11:36:58 +09:00
7 changed files with 2836 additions and 7 deletions
+19
View File
@@ -76,10 +76,29 @@ jobs:
echo "Version: $VERSION"
echo "Commit: $COMMIT"
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Frontend Dependencies & Build
run: |
cd src/frontend
npm install
npm run build
cd ../..
- name: Copy Built Frontend to wwwroot
run: |
mkdir -p src/dotnet/QuantEngine.Web/wwwroot
cp -r src/frontend/dist/* src/dotnet/QuantEngine.Web/wwwroot/
echo "✓ Frontend assets copied to BFF wwwroot"
- name: Restore
run: |
dotnet restore src/dotnet/QuantEngine.Web/QuantEngine.Web.csproj
- name: Build (Release)
run: |
dotnet build src/dotnet/QuantEngine.Web/QuantEngine.Web.csproj \
@@ -50,7 +50,9 @@
<li class="nav-item"><a class="nav-link text-white py-1 px-3 @NavActive("/Admin/Database")" href="/Admin/Database">DB 테이블 관리</a></li>
<li class="nav-item"><a class="nav-link text-white py-1 px-3 @NavActive("/Admin/Users")" href="/Admin/Users">사용자 관리</a></li>
<li class="nav-item"><a class="nav-link text-white py-1 px-3 @NavActive("/Admin/Operations")" href="/Admin/Operations">운영 관리</a></li>
<li class="nav-item"><a class="nav-link py-1 px-3 font-weight-bold" style="color: #F1C40F;" href="/templates">🛠️ 프로토타입 갤러리</a></li>
</ul>
</div>
<!-- 2. Center High-Density Data Grid Body -->
+4 -2
View File
@@ -192,11 +192,11 @@ try
Log.Warning("Hangfire setup failed: {Message}", ex.Message);
}
// Root redirect: unauthenticated → /Account/Login, authenticated → /Admin/Dashboard
// Root redirect: unauthenticated → /Account/Login, authenticated → Vue 3 SPA /templates
app.MapGet("/", context =>
{
if (context.User?.Identity?.IsAuthenticated ?? false)
context.Response.Redirect("/Admin/Dashboard");
context.Response.Redirect("/templates");
else
context.Response.Redirect("/Account/Login");
return Task.CompletedTask;
@@ -210,6 +210,8 @@ try
});
app.MapRazorPages();
app.MapFallbackToFile("index.html");
app.Run();
}
+2801 -1
View File
File diff suppressed because it is too large Load Diff
+3 -1
View File
@@ -17,8 +17,10 @@
"pinia": "^4.0.2",
"primevue": "^4.3.1",
"vue": "^3.5.39",
"vue-router": "^4.6.4"
"vue-router": "^4.6.4",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/node": "^24.13.2",
"@vitejs/plugin-vue": "^6.0.7",
+2 -1
View File
@@ -52,7 +52,8 @@ const columnDefs = ref<ColDef[]>([
{
headerName: '에러 건수', field: 'totalErrors',
type: 'numericColumn',
cellStyle: params => params.value > 0 ? { color: '#e74c3c', fontWeight: 'bold' } : { color: '#2ecc71' }
cellStyle: params => params.value > 0 ? { color: '#e74c3c', fontWeight: 'bold' } : { color: '#2ecc71', fontWeight: 'normal' }
},
{
headerName: '실행 상태', field: 'status',
+5 -2
View File
@@ -1,9 +1,12 @@
import { defineConfig } from 'vite'
import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
plugins: [vue() as any],
test: {
environment: 'jsdom',
globals: true