This commit is contained in:
puke
2025-10-25 19:39:13 +08:00
committed by puke
parent fe6fa4923e
commit 60918f69b1
55 changed files with 13552 additions and 0 deletions

19
start_web.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Start ReelForge Web UI
echo "🚀 Starting ReelForge Web UI..."
echo ""
# Check if config.yaml exists
if [ ! -f config.yaml ]; then
echo "⚠️ config.yaml not found, copying from config.example.yaml..."
cp config.example.yaml config.yaml
echo "✅ config.yaml created"
echo ""
echo "📝 Please edit config.yaml and fill in your API keys before using."
echo ""
fi
# Start Streamlit
uv run streamlit run web.py --server.port=8501 --server.address=localhost