Afilmory
Afilmory (/ΙΛfΙͺlmΙri/, "uh-FIL-muh-ree") is a term created for personal photography websites, blending Auto Focus (AF), aperture (light control), film (vintage medium), and memory (captured moments). A modern photo gallery website built with React + TypeScript, supporting automatic photo synchronization from multiple storage sources (S3, GitHub), featuring high-performance WebGL rendering, masonry layout, EXIF information display, thumbnail generation, and more. Live Photo Galleries: - https://gallery.innei.in - https://gallery.mxte.cc - https://photography.pseudoyu.com ## π Features ### Core Functionality - πΌοΈ **High-Performance WebGL Image Renderer** - Custom WebGL component with smooth zoom and pan operations - π± **Responsive Masonry Layout** - Powered by Masonic, adapts to different screen sizes - π¨ **Modern UI Design** - Built with Tailwind CSS and Radix UI component library - β‘ **Incremental Sync** - Smart change detection, processes only new or modified photos - π **i18n** - Multi-language support - π **OpenGraph** - OpenGraph metadata for social media sharing ### Image Processing - π **HEIC/HEIF Format Support** - Automatic conversion of Apple device HEIC format - πΌοΈ **Smart Thumbnail Generation** - Multi-size thumbnails for optimized loading performance - π **EXIF Information Display** - Complete shooting parameters including camera model, focal length, aperture, etc. - π **Blurhash Placeholders** - Elegant image loading experience - π± **Live Photo Support** - Detection and display of iPhone Live Photos ### Advanced Features - ποΈ **Fujifilm Simulation** - Read and display Fujifilm camera film simulation settings - π **Fullscreen Viewer** - Image viewer with gesture support - π·οΈ **Smart Tags** - Auto-generated tags based on EXIF data - β‘ **Concurrent Processing** - Multi-process/multi-thread concurrent processing support - ποΈ **Multi-Storage Support** - S3, GitHub, and other storage backends ## ποΈ Technical Architecture ### Frontend Tech Stack - **React 19** - Latest React version with Compiler - **TypeScript** - Complete type safety - **Vite** - Modern build tool - **Tailwind CSS** - Atomic CSS framework - **Radix UI** - Accessible component library - **Jotai** - State management - **TanStack Query** - Data fetching and caching - **React Router 7** - Routing management - **i18next** - Internationalization ### Build System - **Node.js** - Server-side runtime - **Sharp** - High-performance image processing - **AWS SDK** - S3 storage operations - **Worker Threads/Cluster** - Concurrent processing - **EXIF-Reader** - EXIF data extraction ### Storage Architecture Designed with adapter pattern, supporting multiple storage backends: - **S3-Compatible Storage** - AWS S3, MinIO, Alibaba Cloud OSS, etc. - **GitHub Storage** - Using GitHub repository as image storage ## π Quick Start ### Docker Deployment [Docker Deployment](https://github.com/Afilmory/docker) ### Requirements - Node.js 18+ - At least 4GB RAM (for image processing) ### 1. Clone the Project ```bash git clone https://github.com/Afilmory/Afilmory.git cd photo-gallery-site ``` ### 2. Install Dependencies ```bash pnpm install ``` ### 3. Environment Configuration Create `.env` file: ```env # S3 Storage Configuration S3_REGION=us-east-1 S3_ACCESS_KEY_ID=your_access_key_id S3_SECRET_ACCESS_KEY=your_secret_access_key S3_ENDPOINT=https://s3.amazonaws.com S3_BUCKET_NAME=your_bucket_name S3_PREFIX=photos/ S3_CUSTOM_DOMAIN=your_custom_domain.com ``` ### 4. Site Configuration Copy and edit the configuration file: ```bash cp config.example.json config.json ``` Edit `config.json`: ```json { "name": "My Afilmory", "title": "My Afilmory", "description": "Capturing beautiful moments in life", "url": "https://afilmory.example.com", "accentColor": "#007bff", // Optional, set theme color "author": { "name": "Your Name", // Required, set author name "url": "https://example.com", // Optional, set author homepage "avatar": "https://example.com/avatar.png" // Optional, set author avatar }, "social": { "twitter": "@yourusername" // Optional, set social accounts } } ``` ### 5. Build Photo Manifest ```bash # Initial build pnpm run build:manifest # Incremental update pnpm run build:manifest # Force full update pnpm run build:manifest -- --force ``` ### 6. Start Development Server ```bash pnpm dev ``` ## βοΈ Configuration Options ### Builder Configuration Create `builder.config.json` file for advanced configuration: ```json { "repo": { "enable": false, "url": "https://github.com/username/gallery-assets" }, "storage": { "provider": "s3", "bucket": "my-photos", "region": "us-east-1", "prefix": "photos/", "customDomain": "cdn.example.com" }, "options": { "defaultConcurrency": 8, "enableLivePhotoDetection": true, "showProgress": true, "showDetailedStats": true }, "logging": { "verbose": true, "level": "info", "outputToFile": false }, "performance": { "worker": { "workerCount": 8, "timeout": 30000, "useClusterMode": true, "workerConcurrency": 2 } } } ``` ### Configuration Options Description #### Storage Configuration (`storage`) - `provider`: Storage provider (`s3` | `github`) - `bucket`: S3 bucket name - `region`: S3 region - `endpoint`: S3 endpoint (optional) - `prefix`: File prefix - `customDomain`: Custom domain #### Build Options (`options`) - `defaultConcurrency`: Default concurrency - `enableLivePhotoDetection`: Enable Live Photo detection - `showProgress`: Show build progress - `showDetailedStats`: Show detailed statistics #### Performance Configuration (`performance`) - `worker.workerCount`: Number of worker processes - `worker.timeout`: Worker timeout (milliseconds) - `worker.useClusterMode`: Enable cluster mode #### Logging Configuration (`logging`) - `verbose`: Verbose logging - `level`: Log level (`info` | `warn` | `error` | `debug`) - `outputToFile`: Output to file ### Remote Repository Configuration If you have a separate asset repository for storing thumbnails and manifests: ```json { "repo": { "enable": true, "url": "https://github.com/username/gallery-assets" } } ``` This will automatically pull resources from the remote repository, avoiding rebuilds each time. ## π CLI Commands ### Build Commands ```bash # View help pnpm run build:manifest -- --help # Incremental update (default) pnpm run build:manifest # Force full update pnpm run build:manifest -- --force # Only regenerate thumbnails pnpm run build:manifest -- --force-thumbnails # Only regenerate manifest pnpm run build:manifest -- --force-manifest ``` ### Development Commands ```bash # Start development server pnpm dev # Build production version pnpm build ``` ### Notes - Ensure your S3 bucket already contains photo files - If using remote repository, configure `builder.config.json` first ## π§ Advanced Usage ### Custom Storage Provider Implement the `StorageProvider` interface to support new storage backends: ```typescript import { StorageProvider } from './src/core/storage/interfaces' class MyStorageProvider implements StorageProvider { async getFile(key: string): Promise