# Run the OpoTest server on Windows PowerShell # Author: Copilot # Project Organizer: Kyman (OpoTest) param([string[]] $Args) $here = Split-Path -Parent $MyInvocation.MyCommand.Definition $scriptDir = Resolve-Path "$here\.." $python = $env:PYTHON -ne $null ? $env:PYTHON : 'python' & $python "$scriptDir\Python\server.py" @Args