diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-12 09:54:55 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-12 09:54:55 +0300 |
| commit | e79498af8150788e73a1db6b699c3d774de1eb6c (patch) | |
| tree | 10114e6dac3db0652a02db6316818545421898f3 /Justfile | |
| parent | 319b9c3d867739d30336a5b2cefd031c0c9ca998 (diff) | |
task 02: finalize day-1 Pebble setup workflow
Diffstat (limited to 'Justfile')
| -rw-r--r-- | Justfile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -3,6 +3,8 @@ # Justfile for Fedora Linux + Pebble SDK 4.9+ (2026) # ============================================= +emulator := "basalt" + # Default: show all available commands default: @just --list @@ -26,19 +28,19 @@ build: # Install to the basalt emulator (this also starts the emulator if it's not running) install: - pebble install --emulator basalt + pebble install --emulator {{emulator}} # Build + Install (the command you will use most often) dev: - pebble build && pebble install --emulator basalt + pebble build && pebble install --emulator {{emulator}} # Show live logs (run this in a **second** terminal) logs: - pebble logs + pebble logs --emulator {{emulator}} # Take a screenshot of the emulator screenshot: - pebble screenshot + pebble screenshot --emulator {{emulator}} # ───────────────────────────────────────────── # Emulator control |
