mirror of
https://github.com/rjNemo/pomodoro
synced 2026-06-05 23:46:40 +00:00
- 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.
13 lines
150 B
Makefile
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
|