- Add AIReportSystem.js for detailed AI response capture and report generation - Add AIReportInterface.js UI component for report access and export - Integrate AI reporting into LLMValidator and SmartPreviewOrchestrator - Add missing modules to Application.js configuration (unifiedDRS, smartPreviewOrchestrator) - Create missing content/chapters/sbs.json for book metadata - Enhance Application.js with debug logging for module loading - Add multi-format export capabilities (text, HTML, JSON) - Implement automatic learning insights extraction from AI feedback - Add session management and performance tracking for AI reports 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
33 lines
711 B
Batchfile
33 lines
711 B
Batchfile
@echo off
|
|
title Class Generator - Development Server
|
|
|
|
echo.
|
|
echo 🚀 Starting Class Generator Development Server...
|
|
echo.
|
|
|
|
:: Check if Node.js is installed
|
|
node --version >nul 2>&1
|
|
if %errorlevel% neq 0 (
|
|
echo ❌ Node.js is not installed or not in PATH
|
|
echo Please install Node.js from https://nodejs.org/
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
:: Kill any existing servers first
|
|
echo 🧹 Cleaning up existing servers...
|
|
taskkill /f /im node.exe >nul 2>&1
|
|
|
|
:: Start the server
|
|
echo ✅ Node.js found
|
|
echo 🔄 Starting server on port 8080...
|
|
echo ⏳ Waiting for system initialization...
|
|
echo.
|
|
|
|
timeout /t 3 /nobreak >nul
|
|
node server.js
|
|
|
|
:: If we get here, the server stopped
|
|
echo.
|
|
echo 👋 Server stopped
|
|
pause |