9 lines
261 B
Batchfile
9 lines
261 B
Batchfile
@echo off
|
|
:: Run the OpoTest server on Windows (cmd)
|
|
:: Author: Copilot
|
|
:: Project Organizer: Kyman (OpoTest)
|
|
set PYTHON=%PYTHON%
|
|
if "%PYTHON%"=="" set PYTHON=python
|
|
for %%I in ("%~dp0\..") do set SCRIPT_DIR=%%~fI
|
|
"%PYTHON%" "%SCRIPT_DIR%\Python\server.py" %*
|