Files
ttipo eebdbc34f5 chore: 메모리 디렉터리 git 추적 제외
Claude Code 작업 메모(/memory)는 저장소 산출물이 아니므로 .gitignore 에 추가한다.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-29 21:11:59 +09:00

66 lines
1.4 KiB
Plaintext

# ==========================================
# 환경 변수 (민감정보) — 절대 커밋 금지
# ==========================================
.env
.env.*
!.env.example
!.env.*.example
# ==========================================
# 도커 영속 데이터
# ==========================================
data/
!data/.gitkeep
db-data/
redis-data/
# ==========================================
# 의존성/빌드 산출물
# ==========================================
node_modules/
dist/
build/
coverage/
.tsbuildinfo
*.tsbuildinfo
# ==========================================
# 로그
# ==========================================
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# ==========================================
# IDE / OS
# ==========================================
.idea/
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
.DS_Store
Thumbs.db
# ==========================================
# 캐시
# ==========================================
.cache/
.eslintcache
.npm/
# 디자인 시안 단독 HTML(참고용, 대용량 번들) — 커밋 제외
frontend/*단독*.html
frontend/*단일 파일*.html
# LiveKit 클러스터 설정 사본(redis 비밀번호 포함) — 커밋 제외
livekit/*.local.yaml
# 작업 중 공유용 임시 스크린샷(루트) 커밋 방지
/image.png
# Claude Code 메모리 디렉터리(작업 메모) — 커밋 제외
/memory/