기존 GhiVideo 저장소 HEAD의 트래킹 소스 362개 파일을 복제. (node_modules·storage·빌드 산출물·대용량 미디어는 .gitignore 규칙대로 제외) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
37 lines
437 B
Plaintext
37 lines
437 B
Plaintext
# 의존성
|
|
node_modules/
|
|
|
|
# 빌드 산출물
|
|
client/dist/
|
|
server/dist/
|
|
shared/dist/
|
|
dist/
|
|
*.tsbuildinfo
|
|
|
|
# 파이썬 빌드 산출물 (exe/pkg/pyz 등)
|
|
pythonsource/build/
|
|
pythonsource/dist/
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# 런타임 저장소 (영상/HLS/프레임/썸네일/DB)
|
|
storage/
|
|
|
|
# 대용량 미디어/바이너리
|
|
*.mp4
|
|
*.MP4
|
|
*.avi
|
|
*.mov
|
|
*.mkv
|
|
*.exe
|
|
|
|
# 로그/환경
|
|
*.log
|
|
.env
|
|
.env.*
|
|
npm-debug.log*
|
|
|
|
# OS/에디터
|
|
.DS_Store
|
|
Thumbs.db
|