#!/bin/bash # Production startup script for SearchEngine services # This script starts frontend and backend services (no data ingestion) cd "$(dirname "$0")" GREEN='\033[0;32m' YELLOW='\033[1;33m' RED='\033[0;31m' NC='\033[0m' echo -e "${GREEN}========================================${NC}" echo -e "${GREEN}SearchEngine服务启动脚本${NC}" echo -e "${GREEN}========================================${NC}" # Create logs directory if it doesn't exist mkdir -p logs # Call unified start script ./scripts/start.sh