chore: Makefile, README
29791a13702041c5f170cc8520701f4c2d30696e
humdrum-tiv <45084903+humdrum-tiv@users.noreply.github.com> · 2026-07-07 16:59
parent ebb9a946
2 files changed
Makefile +7 −0
@@ -0,0 +1,7 @@
+.PHONY: build test install
+build:
+ go build -o bin/ticktock ./cmd/ticktock
+test:
+ go test ./...
+install: build
+ ln -sfn "$(PWD)/bin/ticktock" "$(HOME)/.local/bin/ticktock"
README.md +17 −0
@@ -0,0 +1,17 @@
+# ticktock-go
+
+A Charm-native front-end for the `tock` time tracker.
+tock stays the source of truth; these tools make it easier to review, edit, and
+backfill time.
+
+## Build
+
+ make build # -> bin/ticktock
+ make test
+
+## Commands
+
+- `ticktock day [date|today|yesterday]` — a day view (the tock-list layout) with
+ per-project totals and Enter-to-edit. `←/→` change day, `q` quits.
+
+Requires `tock` on PATH.