2026-01-13 15:53:55 -05:00
|
|
|
@echo off
|
|
|
|
|
title Stop Atomizer Dashboard
|
|
|
|
|
color 0C
|
|
|
|
|
|
|
|
|
|
echo.
|
|
|
|
|
echo Stopping Atomizer Dashboard servers...
|
|
|
|
|
echo.
|
|
|
|
|
|
|
|
|
|
:: Kill processes by window title
|
|
|
|
|
taskkill /F /FI "WINDOWTITLE eq Atomizer Backend*" >nul 2>&1
|
|
|
|
|
taskkill /F /FI "WINDOWTITLE eq Atomizer Frontend*" >nul 2>&1
|
|
|
|
|
|
feat(dashboard): Enhanced chat, spec management, and Claude integration
Backend:
- spec.py: New AtomizerSpec REST API endpoints
- spec_manager.py: SpecManager service for unified config
- interview_engine.py: Study creation interview logic
- claude.py: Enhanced Claude API with context
- optimization.py: Extended optimization endpoints
- context_builder.py, session_manager.py: Improved services
Frontend:
- Chat components: Enhanced message rendering, tool call cards
- Hooks: useClaudeCode, useSpecWebSocket, improved useChat
- Pages: Updated Dashboard, Analysis, Insights, Setup, Home
- Components: ParallelCoordinatesPlot, ParetoPlot improvements
- App.tsx: Route updates for canvas/studio
Infrastructure:
- vite.config.ts: Build configuration updates
- start/stop-dashboard.bat: Script improvements
2026-01-20 13:10:47 -05:00
|
|
|
:: Kill any remaining processes on the ports (backend: 8001, frontend: 3003)
|
|
|
|
|
for /f "tokens=5" %%a in ('netstat -ano ^| findstr :8001 ^| findstr LISTENING') do (
|
2026-01-13 15:53:55 -05:00
|
|
|
taskkill /F /PID %%a >nul 2>&1
|
|
|
|
|
)
|
feat(dashboard): Enhanced chat, spec management, and Claude integration
Backend:
- spec.py: New AtomizerSpec REST API endpoints
- spec_manager.py: SpecManager service for unified config
- interview_engine.py: Study creation interview logic
- claude.py: Enhanced Claude API with context
- optimization.py: Extended optimization endpoints
- context_builder.py, session_manager.py: Improved services
Frontend:
- Chat components: Enhanced message rendering, tool call cards
- Hooks: useClaudeCode, useSpecWebSocket, improved useChat
- Pages: Updated Dashboard, Analysis, Insights, Setup, Home
- Components: ParallelCoordinatesPlot, ParetoPlot improvements
- App.tsx: Route updates for canvas/studio
Infrastructure:
- vite.config.ts: Build configuration updates
- start/stop-dashboard.bat: Script improvements
2026-01-20 13:10:47 -05:00
|
|
|
for /f "tokens=5" %%a in ('netstat -ano ^| findstr :3003 ^| findstr LISTENING') do (
|
2026-01-13 15:53:55 -05:00
|
|
|
taskkill /F /PID %%a >nul 2>&1
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
echo.
|
|
|
|
|
echo Dashboard servers stopped.
|
|
|
|
|
echo.
|
|
|
|
|
pause
|