CoolFace
Apppublic

hallidda/axonhub

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
start.bat15 linesDownload Raw Back to deploy
1@echo off
2setlocal
3
4REM AxonHub Windows start wrapper (.bat)
5
6where powershell >NUL 2>NUL
7if %ERRORLEVEL% NEQ 0 (
8  echo [ERROR] PowerShell is required to run this script.
9  exit /b 1
10)
11
12set "SCRIPT_DIR=%~dp0"
13powershell -NoProfile -ExecutionPolicy Bypass -File "%SCRIPT_DIR%start.ps1" %*
14exit /b %ERRORLEVEL%
15