mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:01:09 +02:00
- Create mana-media service for centralized media handling - Add upload, processing, and delivery modules - Configure BullMQ for async transcoding jobs - Add S3-compatible storage integration - Create TypeScript client package Features: - Multi-format image/video upload - Async transcoding via ffmpeg - Adaptive streaming (HLS) support - Signed URL delivery Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
425 B
Text
22 lines
425 B
Text
# Server
|
|
PORT=3050
|
|
NODE_ENV=development
|
|
|
|
# Redis (for job queue)
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
|
|
# MinIO / S3
|
|
S3_ENDPOINT=localhost
|
|
S3_PORT=9000
|
|
S3_USE_SSL=false
|
|
S3_ACCESS_KEY=minioadmin
|
|
S3_SECRET_KEY=minioadmin
|
|
S3_BUCKET=mana-media
|
|
S3_PUBLIC_URL=http://localhost:9000/mana-media
|
|
|
|
# Public URL for generated links
|
|
PUBLIC_URL=http://localhost:3050/api/v1
|
|
|
|
# CORS
|
|
CORS_ORIGINS=http://localhost:3000,http://localhost:5173
|