10 lines
147 B
Bash
Executable File
10 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
# Start Pixelle-Video Web UI
|
|
|
|
echo "🚀 Starting Pixelle-Video Web UI..."
|
|
echo ""
|
|
|
|
# Start Streamlit
|
|
uv run streamlit run web/app.py
|
|
|