Initial commit: Add project files
ci / backend (push) Failing after 12s
ci / frontend (push) Failing after 19s
ci / static (push) Failing after 45s

This commit is contained in:
2026-08-02 05:15:36 +09:00
commit dcd1322d41
636 changed files with 122352 additions and 0 deletions
@@ -0,0 +1,33 @@
<script setup lang="ts">
import { computed } from 'vue'
import type { UiGridColumn } from '../../../shared/ui/adapter/contracts'
import DataGridShell from '../../../shared/ui/DataGridShell.vue'
import type { DataQualityRun } from '../schema'
// Template fixture only. Production data must come from DAT-03 and pass Zod validation.
const rows: DataQualityRun[] = []
const columns = computed<UiGridColumn[]>(() => [
{ field: 'source', header: 'Source' },
{ field: 'session', header: 'Session' },
{ field: 'status', header: 'DQ' },
{ field: 'rowCount', header: 'Rows' },
{ field: 'failedRows', header: 'Failed' },
{ field: 'sourceWatermark', header: 'Watermark' },
{ field: 'datasetId', header: 'Dataset' },
{ field: 'completedAt', header: 'Completed' }
])
</script>
<template>
<main>
<header>
<h1>데이터 품질 운영</h1>
<p>RawPITDQDataset lineage를 확인합니다. QUARANTINED 데이터는 추천에 사용할 없습니다.</p>
</header>
<DataGridShell
:rows="rows"
:columns="columns"
empty-message="DAT-03 계약이 구현되면 서버 검증 결과가 표시됩니다."
/>
</main>
</template>