Fix FFmpegVideoRemuxer typo and add launch.json dev server configs

- Fix 'preferedformat' → 'preferredformat' typo in consumers.py causing intermittent postprocessing failures when selecting custom formats
- Add .claude/launch.json with Frontend (Vite), Docker Full Stack, and Docker Backend+DB+Redis configurations

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-23 00:22:16 +02:00
parent b3bc242e27
commit 9b4471f61d
2 changed files with 25 additions and 1 deletions

24
.claude/launch.json Normal file
View File

@@ -0,0 +1,24 @@
{
"version": "0.0.1",
"configurations": [
{
"name": "Frontend (Vite)",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"cwd": "frontend",
"port": 5173
},
{
"name": "Docker Stack (Full)",
"runtimeExecutable": "docker-compose",
"runtimeArgs": ["up"],
"port": 80
},
{
"name": "Docker Stack (Backend + DB + Redis)",
"runtimeExecutable": "docker-compose",
"runtimeArgs": ["up", "backend", "db", "redis"],
"port": 8000
}
]
}