feat(quant): WBS-FE-BE-100 complete Vue3 Vite8 SPA & .NET10 FastEndpoints refactoring
Validators (Pushes and Pull Requests) / validate-ui-and-storage (push) Failing after 13s
Validators (Pushes and Pull Requests) / validate-core (push) Failing after 19s

This commit is contained in:
2026-07-22 15:14:28 +09:00
parent fd8ff3d51e
commit 2fe4cb288f
100 changed files with 7975 additions and 804 deletions
+17
View File
@@ -292,6 +292,23 @@ WantedBy=multi-user.target
> Docker 컨테이너는 `host.docker.internal:5432`로 호스트 PG에 접속.
> `listen_addresses`는 `postgresql.conf`에서 기본값 `localhost`로 설정됨 (외부 접속 차단).
### 8.1. SSH 터널링 및 로컬 검증 접속 정보 (Harness Connection Guide)
개발 및 로컬 검증 시, 외부 접속이 차단된 운영 서버의 PostgreSQL 데이터베이스에 안전하게 연결하기 위해 SSH 터널 포트 포워딩을 사용합니다.
* **SSH 터널링 명령**:
```bash
ssh -L 5432:127.0.0.1:5432 kjh2064@178.104.200.7
```
* **로컬 검증용 환경 변수 설정 (PowerShell)**:
```powershell
$env:ConnectionStrings__DefaultConnection="Host=127.0.0.1;Port=5432;Database=quantenginedb;Username=quantengine_app;Password=pvuIp8fWNj+oWfZtciw43GzJ4yU0vwKf;Search Path=quantengine;"
```
* **검증 명령어**:
```bash
.venv\Scripts\python.exe tools/validate_quant_engine_wbs_v1.py
```
## 9. 보안
### 9.1. SSH 보안 설정