summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-12 09:57:36 +0300
committerPaul Buetow <paul@buetow.org>2026-04-12 09:57:36 +0300
commit860b9c1f1d97eec46d42a90dc9bf887233e7218e (patch)
tree10a7e7c2afe91c2a381022c57d6878925dc9e10d /README.md
parente79498af8150788e73a1db6b699c3d774de1eb6c (diff)
task 02: fix PATH and portable repo path docs
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index d0ae877..23d4f13 100644
--- a/README.md
+++ b/README.md
@@ -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
```