80bef6f524
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
12 lines
239 B
Batchfile
12 lines
239 B
Batchfile
@echo off
|
|
REM Convenience launcher for Windows.
|
|
cd /d "%~dp0"
|
|
|
|
if not exist .venv (
|
|
python -m venv .venv
|
|
.venv\Scripts\pip install --upgrade pip
|
|
.venv\Scripts\pip install -r requirements.txt
|
|
)
|
|
|
|
.venv\Scripts\python -m bolt_pet
|