8 lines
169 B
Batchfile
8 lines
169 B
Batchfile
@echo off
|
|
cd /d "%~dp0"
|
|
echo Starting Macropad Control Center...
|
|
start "Macropad Server" /MIN node server.js
|
|
timeout /t 2 /nobreak >nul
|
|
start http://localhost:3001
|
|
exit
|