| #!/bin/bash |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| cd ../../../ |
|
|
| |
| check_and_install_hooks() { |
| local hooks_missing=false |
| |
| |
| if [ ! -f ".git/hooks/pre-commit" ] || [ ! -f ".git/hooks/pre-push" ] || [ ! -f ".git/hooks/post-push" ]; then |
| hooks_missing=true |
| fi |
| |
| if [ "$hooks_missing" = true ]; then |
| echo "🔧 Git hooks missing, installing them..." |
| cd tools/server/webui |
| if bash scripts/install-git-hooks.sh; then |
| echo "✅ Git hooks installed successfully" |
| else |
| echo "⚠️ Failed to install git hooks, continuing anyway..." |
| fi |
| cd ../../../ |
| else |
| echo "✅ Git hooks already installed" |
| fi |
| } |
|
|
| |
| check_and_install_hooks |
|
|
| |
| cleanup() { |
| echo "🧹 Cleaning up..." |
| exit |
| } |
|
|
| |
| trap cleanup SIGINT SIGTERM |
|
|
| echo "🚀 Starting development servers..." |
| echo "📝 Note: Make sure to start llama-server separately if needed" |
| cd tools/server/webui |
| |
| |
| storybook dev -p 6006 --ci & NODE_OPTIONS="--insecure-http-parser" vite dev --host 0.0.0.0 & |
|
|
| |
| wait |
|
|