8 lines
149 B
Batchfile
8 lines
149 B
Batchfile
@echo off
|
|
REM QwenClaw Daemon Runner
|
|
REM Use this with NSSM or Windows Task Scheduler to run as a service
|
|
|
|
cd /d "%~dp0.."
|
|
bun run start --web
|
|
pause
|