windpacer 3556739a3e chore: 프론트 라이브러리 wwwroot/lib 추적 (.gitignore 예외)
Python용 lib/ 무시 규칙이 wwwroot/lib 까지 잡아 vendoring 라이브러리가
미추적이던 문제 수정. clone 시 마크다운 렌더 등이 동작하도록 추적 전환.

- 신규: marked, dompurify, highlight.js(+테마), katex(js/css/auto-render+woff2 20),
  mermaid (문서 탐색기 의존)
- 기존 누락분 동반 추적: uPlot.iife.min.js, uPlot.min.css
- .gitignore: !src/Web/wwwroot/lib/ 예외 추가

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-24 06:34:23 +09:00
2026-05-09 04:28:10 +09:00
2026-05-09 04:28:10 +09:00

ExperionCrawler

Honeywell Experion OPC UA 서버를 위한 웹 기반 데이터 수집 도구.

아키텍처

ExperionCrawler/
└── src/
    ├── Core/
    │   ├── Domain/Entities/          # ExperionTag, ExperionRecord, ExperionServerConfig ...
    │   ├── Application/
    │   │   ├── Interfaces/           # IExperionCertificateService, IExperionOpcClient ...
    │   │   ├── Services/             # ExperionCrawlService
    │   │   └── DTOs/                 # ExperionServerConfigDto, ExperionCrawlRequestDto ...
    │   └── (Domain 은 Infrastructure 에 의존하지 않음)
    │
    ├── Infrastructure/
    │   ├── Certificates/             # ExperionCertificateService (pki/ 폴더 관리)
    │   ├── OpcUa/                    # ExperionOpcClient, ExperionStatusCodeService
    │   ├── Csv/                      # ExperionCsvService (CsvHelper)
    │   └── Database/                 # ExperionDbContext + ExperionDbService (EF Core / SQLite)
    │
    └── Web/
        ├── Controllers/              # ExperionC
Description
No description provided
Readme 55 MiB
Languages
C# 43.4%
Python 31.1%
JavaScript 16.2%
HTML 4.6%
CSS 4%
Other 0.7%