Files
wild-pc/devbox-connect/service/run-manual.bat
Paul Payne 0d35ac9ffd Initial commit: castle personal software platform
Add three submodules (central-context, mboxer, notification-bridge),
devbox-connect as tracked files, and top-level project docs.
2026-02-19 16:38:11 -08:00

20 lines
439 B
Batchfile

@echo off
REM run-manual.bat - Run devbox-connect manually (not as a service)
REM
REM Usage:
REM run-manual.bat - Uses tunnels.yaml in current directory
REM run-manual.bat C:\path\to\config - Uses specified config file
setlocal
set CONFIG=%1
if "%CONFIG%"=="" set CONFIG=tunnels.yaml
echo Starting devbox-connect with config: %CONFIG%
echo Press Ctrl+C to stop
echo.
devbox-connect -c "%CONFIG%" start
pause