diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-12 09:57:36 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-12 09:57:36 +0300 |
| commit | 860b9c1f1d97eec46d42a90dc9bf887233e7218e (patch) | |
| tree | 10a7e7c2afe91c2a381022c57d6878925dc9e10d | |
| parent | e79498af8150788e73a1db6b699c3d774de1eb6c (diff) | |
task 02: fix PATH and portable repo path docs
| -rw-r--r-- | AGENTS.md | 5 | ||||
| -rw-r--r-- | README.md | 6 |
2 files changed, 7 insertions, 4 deletions
@@ -10,6 +10,7 @@ This file is the primary workflow reference for FastForge contributors. sudo dnf update sudo dnf install -y python3-pip nodejs SDL-devel dtc uv just uv tool install pebble-tool --python 3.13 +export PATH="$HOME/.local/bin:$PATH" pebble sdk install latest ``` @@ -44,7 +45,7 @@ Available commands: Daily loop after reboot: 1. Restore PATH (`export PATH="$HOME/.local/bin:$PATH"`). -2. `cd /home/paul/git/fastforge` +2. `cd /path/to/fastforge` 3. `just dev` 4. In a second terminal run `just logs` @@ -74,5 +75,5 @@ Do not commit generated artifacts: - Build fails: run `just clean` then `just rebuild`. - Change app version: update `package.json`, then run `just dev`. -Last updated: April 12, 2026 +Last updated: April 12, 2026 (follow-up fix) Maintained for: FastForge agents @@ -8,6 +8,7 @@ FastForge is a Pebble watchapp for intermittent fasting tracking, built with the sudo dnf update sudo dnf install -y python3-pip nodejs SDL-devel dtc uv just uv tool install pebble-tool --python 3.13 +export PATH="$HOME/.local/bin:$PATH" pebble sdk install latest ``` @@ -21,14 +22,15 @@ pebble --version ## Development Workflow ```bash -cd /home/paul/git/fastforge +cd /path/to/fastforge +export PATH="$HOME/.local/bin:$PATH" just dev ``` In a second terminal: ```bash -cd /home/paul/git/fastforge +cd /path/to/fastforge export PATH="$HOME/.local/bin:$PATH" just logs ``` |
