17 lines
409 B
Batchfile
17 lines
409 B
Batchfile
@echo off
|
|
REM --- Start Ollama Service ---
|
|
echo Starting Ollama AI service...
|
|
start /min ollama serve
|
|
|
|
REM --- Wait a few seconds for Ollama to initialize ---
|
|
timeout /t 3 /nobreak >nul
|
|
|
|
REM --- Start the Gooner Training Academy webGame ---
|
|
echo Launching Gooner Training Academy...
|
|
REM If you use npm:
|
|
npm start
|
|
|
|
REM If you use a different command (like electron .), replace above with:
|
|
REM electron .
|
|
|
|
pause |