59 lines
933 B
Text
59 lines
933 B
Text
# === 민감 데이터 (절대 커밋 금지) ===
|
|
# 미성년·자살사고 포함 상담 사례 원본 — 개인정보·동의 미확보. 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
|
|
*.err
|
|
.pnpm-store/
|
|
|
|
# === Python / 백엔드 ===
|
|
__pycache__/
|
|
*.py[cod]
|
|
.venv/
|
|
venv/
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
apps/api/uploads/
|
|
|
|
# === Docker / 런타임 ===
|
|
*.pid
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
postgres-data/
|
|
.wrangler/
|
|
public-runtime-watchdog.failcount
|
|
|
|
# 임시 실행/로그 (P1 빌드)
|
|
*.out
|
|
apps/api/gateway.restart.*
|
|
apps/api/e2e_*.py
|
|
apps/web/_pptr_check.cjs
|
|
apps/web/_pptr*.cjs
|
|
|
|
# 로컬 dev 서버 로그(scripts/dev-up.ps1)
|
|
.devlogs/
|
|
.codex-remote-attachments/
|
|
|
|
# 로컬 시각 검증 산출물
|
|
docs/design-verification/
|