Files
document-server/.gitignore
Hyungi Ahn 1e2e66d8fe 📝 Add: 업로드 파일들을 gitignore에 추가
- 개발 중 업로드된 HTML 문서들 제외
- 배포 시 깨끗한 상태 유지
2025-08-22 09:58:50 +09:00

114 lines
1.1 KiB
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# FastAPI
.pytest_cache/
.coverage
htmlcov/
# Database
*.db
*.sqlite3
# Docker
.dockerignore
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids/
*.pid
*.seed
*.pid.lock
# Coverage directory used by tools like istanbul
coverage/
# nyc test coverage
.nyc_output
# Dependency directories
node_modules/
# Optional npm cache directory
.npm
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Uploads (실제 파일들)
uploads/documents/
uploads/thumbnails/
# Poetry
poetry.lock
# Temporary files
*.tmp
*.temp
# 업로드된 문서들 (개발용)
backend/uploads/documents/*.html