feat: Re:Link MVP 초기 구현 - 도메인/서비스/프론트엔드 전체

- 모노레포 구조 (Turborepo + pnpm): @relink/domain, @relink/shared, @relink/infrastructure, @relink/database, @relink/web
- 도메인 레이어: 매장(store), 매칭(matching), 업체(vendor), 보조금(subsidy), 계약/에스크로(contract) TDD 완료 (158 단위 테스트)
- 서비스 레이어: 전 도메인 서비스 함수 + 통합 테스트 (58 테스트)
- 프론트엔드: Next.js 15 App Router, 13개 페이지 (사용자 6 + 관리자 7)
- 인프라: PostgreSQL 16 + PostGIS, Prisma ORM, Docker Compose, AuditLog + OutboxEvent 패턴
- .env 파일 포함 (로컬 개발 기본값만 포함, 실제 시크릿 없음)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Johngreen
2026-03-07 17:39:56 +09:00
commit 16bd2cb92a
170 changed files with 23628 additions and 0 deletions
@@ -0,0 +1,9 @@
code,name_ko,parent_code,depth,sort_order,is_leaf,is_active,is_beta_enabled
FNB,음식점/카페,,0,1,false,true,true
FNB.CAFE,카페,FNB,1,1,true,true,true
FNB.BAKERY,베이커리,FNB,1,2,true,true,true
FNB.KOREAN,한식,FNB,1,3,true,true,true
FNB.CHICKEN,치킨,FNB,1,4,true,true,true
FNB.BAR,주점,FNB,1,5,true,true,true
FNB.DESSERT,디저트,FNB,1,6,true,true,true
FNB.FASTCASUAL,간편식/패스트캐주얼,FNB,1,7,true,true,true
1 code name_ko parent_code depth sort_order is_leaf is_active is_beta_enabled
2 FNB 음식점/카페 0 1 false true true
3 FNB.CAFE 카페 FNB 1 1 true true true
4 FNB.BAKERY 베이커리 FNB 1 2 true true true
5 FNB.KOREAN 한식 FNB 1 3 true true true
6 FNB.CHICKEN 치킨 FNB 1 4 true true true
7 FNB.BAR 주점 FNB 1 5 true true true
8 FNB.DESSERT 디저트 FNB 1 6 true true true
9 FNB.FASTCASUAL 간편식/패스트캐주얼 FNB 1 7 true true true