9 lines
328 B
PowerShell
9 lines
328 B
PowerShell
# 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
|