Update .gitignore and README.md for CODESYS MCP project. Added entries to .gitignore for VSIX files and VS Code settings. Expanded README to include architecture, components, deployment instructions, and details about the Cursor extension.

This commit is contained in:
2026-05-24 15:47:21 +03:00
parent acdd740d01
commit bedc5d0628
55 changed files with 11120 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
@echo off
setlocal
cd /d C:\codesys-agent
rem Copy to start-agent.bat and set your token locally (do not commit).
set CODESYS_AGENT_TOKEN=REPLACE_WITH_TOKEN
set CODESYS_AGENT_SCRIPTS_DIR=C:\codesys-agent\scripts
set CODESYS_AGENT_RUNTIME_DIR=C:\codesys-agent\runtime
set CODESYS_AGENT_PYTHON_BIN=C:\Program Files\Python312-arm64\python.exe
set CODESYS_AGENT_ALLOW_DOWNLOAD=false
set CODESYS_EXE_PATH=C:\Program Files\CODESYS 3.5.22.10\CODESYS\Common\CODESYS.exe
set CODESYS_PROFILE=CODESYS V3.5 SP22 Patch 1
set CODESYS_NO_UI=true
if not exist C:\codesys-agent\runtime mkdir C:\codesys-agent\runtime
C:\codesys-agent\.venv\Scripts\uvicorn.exe agent:app --host 0.0.0.0 --port 8787