pomodoro/justfile
Ruidy bebe08e0ab
chore: update deps, add docs and justfile
- Updated dependencies in go.mod and go.sum to latest versions.
- Added README.md with usage instructions and requirements.
- Added justfile with build, run, and dev tasks.
- Updated .gitignore to exclude tmp/ directory.
2025-05-18 23:47:21 +02:00

13 lines
150 B
Makefile

default:
@just --list
# Build the binary
build:
@go build -ldflags="-s -w" -o dist/pom .
# Run the binary
run: build
@./dist/pom
dev:
@air