34 lines
464 B
Plaintext
34 lines
464 B
Plaintext
# VCS / IDE
|
|
.git
|
|
.gitignore
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
.DS_Store
|
|
|
|
# Node / Python 산출물 (이미지 안에서 재설치)
|
|
**/node_modules
|
|
**/__pycache__
|
|
**/*.pyc
|
|
**/*.egg-info
|
|
**/.venv
|
|
.pytest_cache
|
|
.mypy_cache
|
|
.ruff_cache
|
|
|
|
# 런타임/렌더 산출물 (재생성 가능)
|
|
server/outputs
|
|
server/.uploads
|
|
server/.tmp
|
|
remotion/out
|
|
remotion/public/job_*.mp4
|
|
|
|
# 대용량 입력/출력 미디어
|
|
inputs/*
|
|
outputs/*
|
|
|
|
# 배포 메타 / 시크릿
|
|
.vercel
|
|
**/.env
|
|
**/.env.local
|