18 lines
375 B
Bash
Executable File
18 lines
375 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
BASE_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
"$BASE_DIR/scripts/probe.sh"
|
|
python3 "$BASE_DIR/scripts/render-config.py"
|
|
|
|
sudo systemctl daemon-reload
|
|
sudo systemctl restart ollama
|
|
|
|
echo
|
|
echo "=== machine profile ==="
|
|
cat "$BASE_DIR/generated/machine-profile.json"
|
|
echo
|
|
echo "=== continue config ==="
|
|
echo "~/.continue/config.yaml updated"
|