File: dev.sh

package info (click to toggle)
llama.cpp 7593%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 71,012 kB
  • sloc: cpp: 329,391; ansic: 48,249; python: 32,103; lisp: 10,053; sh: 6,070; objc: 1,349; javascript: 924; xml: 384; makefile: 233
file content (57 lines) | stat: -rw-r--r-- 1,571 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash

# Development script for llama.cpp webui
# 
# This script starts the webui development servers (Storybook and Vite).
# Note: You need to start llama-server separately.
#
# Usage:
#   bash scripts/dev.sh
#   npm run dev

cd ../../../

# Check and install git hooks if missing
check_and_install_hooks() {
    local hooks_missing=false
    
    # Check for required hooks
    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
}

# Install git hooks if needed
check_and_install_hooks

# Cleanup function
cleanup() {
    echo "๐Ÿงน Cleaning up..."
    exit
}

# Set up signal handlers
trap cleanup SIGINT SIGTERM

echo "๐Ÿš€ Starting development servers..."
echo "๐Ÿ“ Note: Make sure to start llama-server separately if needed"
cd tools/server/webui
# Use --insecure-http-parser to handle malformed HTTP responses from llama-server
# (some responses have both Content-Length and Transfer-Encoding headers)
storybook dev -p 6006 --ci & NODE_OPTIONS="--insecure-http-parser" vite dev --host 0.0.0.0 &

# Wait for all background processes
wait