jungwoo choi 3c485e05c9 feat: Implement Step 12 - File System with MinIO S3 Storage
Completed File Management Service with S3-compatible object storage:

Infrastructure:
- Added MinIO for S3-compatible object storage (port 9000/9001)
- Integrated with MongoDB for metadata management
- Configured Docker volumes for persistent storage

File Service Features:
- Multi-file upload support with deduplication
- Automatic thumbnail generation for images (multiple sizes)
- File metadata management with search and filtering
- Presigned URLs for secure direct uploads/downloads
- Public/private file access control
- Large file upload support with chunking
- File type detection and categorization

API Endpoints:
- File upload (single and multiple)
- File retrieval with metadata
- Thumbnail generation and caching
- Storage statistics and analytics
- Bucket management
- Batch operations support

Technical Improvements:
- Fixed Pydantic v2.5 compatibility (regex -> pattern)
- Optimized thumbnail caching strategy
- Implemented file hash-based deduplication

Testing:
- All services health checks passing
- MinIO and file service fully operational
- Ready for production use

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-11 19:10:37 +09:00
2025-09-10 16:49:48 +09:00

Site11 - Microservices Architecture

Overview

Microservices platform with Console as API Gateway orchestrating multiple domain services.

Quick Start

Start Services

# Start console service
docker-compose up -d console-backend

# Check status
curl http://localhost:8011/health

Available Endpoints

  • http://localhost:8011/ - Root endpoint
  • http://localhost:8011/health - Health check
  • http://localhost:8011/api/status - System status

Architecture

  • Console: API Gateway and orchestrator
  • Services: Domain-specific microservices (users, oauth, images, etc.)
  • Database: MongoDB for persistence
  • Cache: Redis for caching and pub/sub

Development

See docs/PLAN.md for implementation roadmap and docs/PROGRESS.md for current status.

Description
No description provided
Readme 1.1 MiB
Languages
Python 80.8%
TypeScript 13.3%
Shell 4.9%
Dockerfile 0.7%
Makefile 0.2%