Set up Webber - multi-agent AI development system with: - Domain-based project structure (src/domains/, src/shared/) - BaseController pattern with lazy router instantiation - Pydantic Settings configuration with env file support - Logger decorator with temporal benchmarking and trace IDs - UserProvider singleton for request-scoped context - Custom exception hierarchy - Health endpoints (/, /health) Dependencies (CVE checked 2026-01-09): - FastAPI 0.128.0, Starlette 0.50.0, Uvicorn 0.40.0 - Pydantic 2.12.4, PydanticAI 1.40.0 - All packages at latest safe versions Placeholder domains for future implementation: - agents/ (explore, plan, task) - tools/ (file, shell, search) - auth/ (tatlock integration) Port: 8086 (per CONTAINERS.md allocation) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
49 lines
1.3 KiB
Bash
Executable File
49 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# Webber Server Startup Script
|
|
|
|
set -e
|
|
|
|
# Colors for output
|
|
GREEN='\033[0;32m'
|
|
YELLOW='\033[1;33m'
|
|
RED='\033[0;31m'
|
|
NC='\033[0m' # No Color
|
|
|
|
echo -e "${GREEN}Starting Webber...${NC}"
|
|
|
|
# Check if port 8086 is already in use
|
|
if lsof -Pi :8086 -sTCP:LISTEN -t >/dev/null 2>&1 ; then
|
|
echo -e "${RED}Error: Port 8086 is already in use${NC}"
|
|
echo "Run: lsof -i :8086 to see what's using it"
|
|
echo "Or run: kill \$(lsof -t -i:8086) to stop it"
|
|
exit 1
|
|
fi
|
|
|
|
# Activate virtual environment if not already activated
|
|
if [ -z "$VIRTUAL_ENV" ]; then
|
|
if [ -d ".venv" ]; then
|
|
echo -e "${YELLOW}Activating virtual environment...${NC}"
|
|
source .venv/bin/activate
|
|
else
|
|
echo -e "${RED}Error: Virtual environment not found${NC}"
|
|
echo "Run: python -m venv .venv && source .venv/bin/activate && pip install -r requirements-dev.txt"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# Create logs directory if it doesn't exist
|
|
LOGS_DIR="logs"
|
|
mkdir -p "$LOGS_DIR"
|
|
|
|
# Clear/create log file
|
|
LOG_FILE="$LOGS_DIR/server.log"
|
|
> "$LOG_FILE"
|
|
echo -e "${YELLOW}Logs will be written to: ${LOG_FILE}${NC}"
|
|
|
|
# Start the server
|
|
echo -e "${GREEN}Starting uvicorn server on http://localhost:8086${NC}"
|
|
echo -e "${YELLOW}Press Ctrl+C to stop the server${NC}"
|
|
echo ""
|
|
|
|
uvicorn src.main:app --reload --host 0.0.0.0 --port 8086 2>&1 | tee "$LOG_FILE"
|