delete goose web (#7696)

Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
Douwe Osinga 2026-03-07 12:09:05 -05:00 committed by GitHub
parent d7ffedaa6e
commit a7fb7e199c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 0 additions and 2036 deletions

View file

@ -1,26 +0,0 @@
#!/bin/bash
# Test script for Goose Web Interface
echo "Testing Goose Web Interface..."
echo "================================"
# Start the web server in the background
echo "Starting web server on port 8080..."
./target/debug/goose web --port 8080 &
SERVER_PID=$!
# Wait for server to start
sleep 2
# Test the health endpoint
echo -e "\nTesting health endpoint:"
curl -s http://localhost:8080/api/health | jq .
# Open browser (optional)
# open http://localhost:8080
echo -e "\nWeb server is running at http://localhost:8080"
echo "Press Ctrl+C to stop the server"
# Wait for user to stop
wait $SERVER_PID