80bef6f524
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 lines
280 B
Bash
Executable File
13 lines
280 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Convenience launcher for macOS/Linux.
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")"
|
|
|
|
if [ ! -d .venv ]; then
|
|
python3 -m venv .venv
|
|
./.venv/bin/pip install --upgrade pip
|
|
./.venv/bin/pip install -r requirements.txt
|
|
fi
|
|
|
|
exec ./.venv/bin/python -m bolt_pet
|