Files
wrapped/Makefile
T
atridad fec14022cd Initial implementation of Gitea Wrapped TUI
- Gitea API client with repository and commit fetching
- Interactive credential input screen with masked token input
- Statistics analyzer for commits, languages, and activity patterns
- Multi-page report screen with ASCII charts and visualizations
- Integration of all components in main app coordinator
- Comprehensive README with usage instructions

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-01 10:05:57 -06:00

11 lines
120 B
Makefile

.PHONY: build run clean
build:
go build -o wrapped ./cmd/gitea-wrapped/
run: build
./wrapped
clean:
rm -f wrapped