summaryrefslogtreecommitdiff
path: root/Justfile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-12 09:54:55 +0300
committerPaul Buetow <paul@buetow.org>2026-04-12 09:54:55 +0300
commite79498af8150788e73a1db6b699c3d774de1eb6c (patch)
tree10114e6dac3db0652a02db6316818545421898f3 /Justfile
parent319b9c3d867739d30336a5b2cefd031c0c9ca998 (diff)
task 02: finalize day-1 Pebble setup workflow
Diffstat (limited to 'Justfile')
-rw-r--r--Justfile10
1 files changed, 6 insertions, 4 deletions
diff --git a/Justfile b/Justfile
index 2f5365e..3fa272d 100644
--- a/Justfile
+++ b/Justfile
@@ -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