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:
17
deploy/windows/start-agent.bat.example
Normal file
17
deploy/windows/start-agent.bat.example
Normal 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
|
||||
Reference in New Issue
Block a user