system-prompts-and-models-o.../Nowhere_AI_Agent/setup-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

53 lines
2.1 KiB
Batchfile
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
echo.
echo ========================================
echo 🚀 Nowhere AI Agent Setup
echo ========================================
echo.
echo 📁 Navigating to backend directory...
cd backend
echo.
echo 🔧 Creating environment file...
if not exist .env (
copy env.example .env
echo ✅ Environment file created from template
) else (
echo Environment file already exists
)
echo.
echo 📦 Installing dependencies...
call npm install
echo.
echo 🚀 Starting Nowhere AI Agent server...
echo.
echo ╔══════════════════════════════════════════════════════════════╗
echo ║ 🚀 Nowhere AI Agent ║
echo ║ ║
echo ║ 🌐 Server will run on: http://localhost:3001 ║
echo ║ 📡 WebSocket available at: ws://localhost:3001 ║
echo ║ 📊 Health check: http://localhost:3001/health ║
echo ║ ║
echo ║ 🎤 Voice Integration: Available ║
echo ║ 🧠 Memory System: In-Memory ║
echo ║ 🤖 Autopilot Mode: Available ║
echo ║ ║
echo ╚══════════════════════════════════════════════════════════════╝
echo.
echo 📋 Next steps:
echo 1. Edit .env file to add your API keys (optional)
echo 2. Open frontend/index.html in your browser
echo 3. Test the API endpoints
echo.
echo 🎯 Example commands to test:
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 start the server...
pause >nul
echo.
echo 🚀 Starting server...
node server.js