system-prompts-and-models-o.../Nowhere_AI_Agent/launch-nowhere.bat
dopeuni444 d43632a49a Removes outdated prompt files
Removes the `Chat Prompt.txt`, `VSCode Agent/Prompt.txt`, `Warp.dev/Prompt.txt`, and `v0 Prompts and Tools/Prompt.txt` files.

These files likely contain outdated prompts or configurations that are no longer needed in the current project. Removing them helps to clean up the codebase and prevent potential confusion or conflicts.
2025-07-31 01:45:01 +04:00

31 lines
763 B
Batchfile

@echo off
echo.
echo ========================================
echo 🚀 Nowhere AI Agent Launcher
echo ========================================
echo.
echo 📁 Starting server in background...
cd backend
start /B node server.js
echo.
echo ⏳ Waiting for server to start...
timeout /t 3 /nobreak >nul
echo.
echo 🌐 Opening frontend...
start frontend/index.html
echo.
echo ✅ Nowhere AI Agent is now running!
echo.
echo 📍 Server: http://localhost:3001
echo 📍 Frontend: frontend/index.html
echo 📍 Health: http://localhost:3001/health
echo.
echo 🎯 Test the API:
echo curl -X POST http://localhost:3001/api/v1/command -H "Content-Type: application/json" -d "{\"command\":\"analyze this code\"}"
echo.
echo Press any key to exit...
pause >nul