mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-09-15 12:27:30 +00:00
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.
31 lines
763 B
Batchfile
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 |