Add Windows setup batch script

This commit is contained in:
latinogino
2025-08-28 18:45:47 +02:00
parent 1f5720cd8c
commit 4d66796b46

21
setup.bat Normal file
View File

@@ -0,0 +1,21 @@
@echo off
echo 🚀 Setting up Dolibarr MCP Development Environment...
echo.
REM Run the setup script
python setup.py
echo.
echo 📋 Quick Start Commands:
echo.
echo Activate virtual environment:
echo ^> venv_dolibarr\Scripts\activate
echo.
echo Test the server:
echo ^> venv_dolibarr\Scripts\python.exe -m dolibarr_mcp.dolibarr_mcp_server
echo.
echo Run with Docker:
echo ^> docker-compose up
echo.
pause