Files
GhiVideo_v4/.gitignore
T
b23042andClaude Fable 5 f6a9b62dc3 StationPlayer 포터블 패키지 — 웹서버 없이 로컬 단독 실행
- server/src/demo.ts: 경량 서버 엔트리 — 정적 클라이언트 + 필수 API 2종만
  (/api/elevation DEM 프록시, /api/tile 지도 타일 프록시). 영상은 브라우저
  폴더 선택(로컬 파일)이라 업로드/HLS/DB(네이티브 모듈) 불필요
- scripts/build-portable.sh: esbuild 단일 번들(--minify, 소스 비공개) + client
  복사 + 호스트 node.exe 동봉 + StationPlayer.bat/README(CRLF) 생성
  → dist-portable/StationPlayer-Portable (약 103MB, 더블클릭 실행)
- .gitignore: dist-portable/ 제외

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-15 16:26:28 +09:00

38 lines
452 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
dist-portable/