blob: 745509d4019cde29e3ea4c0be8c79a18998d36ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# FastForge
FastForge is a Pebble watchapp for intermittent fasting tracking, built with the Rebble SDK.
## Screenshots
| Pebble Round 2 — Menu | Pebble Round 2 — Countdown | Pebble Round 2 — History | Pebble Time — Countdown |
|:---:|:---:|:---:|:---:|
| <img src="screenshots/gabbro_01_menu.png" width="130"> | <img src="screenshots/gabbro_02_countdown.png" width="130"> | <img src="screenshots/gabbro_03_history.png" width="130"> | <img src="screenshots/basalt_01_countdown.png" width="130"> |
## Day-1 Setup (Fedora + Rebble SDK 4.9+)
```bash
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
```
## After Reboot
```bash
export PATH="$HOME/.local/bin:$PATH"
pebble --version
```
## Development Workflow
```bash
cd /path/to/fastforge
export PATH="$HOME/.local/bin:$PATH"
just dev
```
In a second terminal:
```bash
cd /path/to/fastforge
export PATH="$HOME/.local/bin:$PATH"
just logs
```
Useful commands:
- `just`: list commands
- `just dev`: build + install to Pebble Round 2 (gabbro) emulator
- `just dev-basalt`: build + install to Pebble Time (basalt) emulator
- `just logs`: live logs from gabbro emulator
- `just screenshot`: screenshot from gabbro emulator
- `just kill`: stop emulator
- `just clean`: remove build artifacts
|