- Add backend/services/meta_video_client.py (direct video generation) - Update routers/meta.py with working /meta/video endpoint - Delete services/metaai-api/ (~1500 lines removed) - Simplify docker-compose.yml to single container - No external service dependencies for Meta AI
12 lines
336 B
YAML
12 lines
336 B
YAML
services:
|
|
kv-pix:
|
|
image: git.khoavo.myds.me/vndangkhoa/apix:latest
|
|
container_name: kv-pix
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000" # Next.js frontend
|
|
- "8000:8000" # FastAPI backend
|
|
environment:
|
|
- NODE_ENV=production
|
|
volumes:
|
|
- ./data:/app/data # Persist prompt library and history
|