chore: Vignette 모노레포 초기 스캐폴드 + 설계 문서 이관

- apps/web(React) · apps/api(FastAPI) · infra(Docker) · docs(설계 SoT)
- 마스터플랜·적대검증·메모리설계·디자인컨셉 docs 이관
- 미성년 사례데이터는 .gitignore로 제외(개인정보 보호)
This commit is contained in:
Yun Chan 2026-06-25 21:16:45 +09:00
commit 709baadd01
12 changed files with 3087 additions and 0 deletions

41
.gitignore vendored Normal file
View file

@ -0,0 +1,41 @@
# === 민감 데이터 (절대 커밋 금지) ===
# 미성년·자살사고 포함 상담 사례 원본 — 개인정보·동의 미확보. repo에 올리지 않는다.
data/raw/
*.hwp
*.hwpx
**/축어록*
**/*사례*.docx
# === 시크릿 ===
.env
.env.*
!.env.example
*-key.txt
*.pem
secrets/
.glassdeck-auth.env
# === Node / 프론트 ===
node_modules/
dist/
build/
.next/
.turbo/
*.log
.pnpm-store/
# === Python / 백엔드 ===
__pycache__/
*.py[cod]
.venv/
venv/
*.egg-info/
.pytest_cache/
.ruff_cache/
# === Docker / 런타임 ===
*.pid
.DS_Store
.idea/
.vscode/
postgres-data/