feat: implement vertical crop, local LLM deepseek-v4-flash, multi-threading, word-level pink box highlight subtitles, and Nextcloud scan sync

This commit is contained in:
Renato
2026-07-02 16:12:23 +02:00
parent 50bdaedebb
commit c7c3c4b74a
154 changed files with 36256 additions and 3 deletions
+40
View File
@@ -0,0 +1,40 @@
services:
backend:
build: .
container_name: openshorts-backend
ports:
- "8000:8000"
volumes:
- .:/app
- /app/__pycache__
- ./output:/app/output
restart: unless-stopped
frontend:
build: ./dashboard
container_name: openshorts-frontend
ports:
- "5175:5173"
volumes:
- ./dashboard:/app
- /app/node_modules
restart: unless-stopped
depends_on:
- backend
renderer:
build:
context: .
dockerfile: render-service/Dockerfile
container_name: openshorts-renderer
ports:
- "3100:3100"
volumes:
- ./output:/output
environment:
- REMOTION_BUNDLE_PATH=/app/remotion
- OUTPUT_DIR=/output
- PORT=3100
restart: unless-stopped
depends_on:
- backend