Update startup script for full video processing by default
- Modify startup script to install video dependencies by default - Add MoviePy to main dependencies for easier setup - Ready to test with InterNACHI demo videos once installation completes
This commit is contained in:
parent
d7b56da7c7
commit
daf1c225c2
@ -7,6 +7,7 @@ authors = [
|
|||||||
]
|
]
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"fastmcp>=2.12.2",
|
"fastmcp>=2.12.2",
|
||||||
|
"moviepy>=2.2.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
@ -23,8 +23,8 @@ fi
|
|||||||
|
|
||||||
# Check if dependencies are installed
|
# Check if dependencies are installed
|
||||||
if [ ! -d ".venv" ] && [ ! -f "uv.lock" ]; then
|
if [ ! -d ".venv" ] && [ ! -f "uv.lock" ]; then
|
||||||
echo "📦 Installing dependencies with UV..."
|
echo "📦 Installing full video processing dependencies with UV..."
|
||||||
uv sync
|
uv sync --extra video
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Set environment variables for video processing
|
# Set environment variables for video processing
|
||||||
|
Loading…
x
Reference in New Issue
Block a user