aboutsummaryrefslogtreecommitdiff
path: root/justfile
blob: b1530db59b40114f65d6bb903324f114cdb2b45d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name := "mugi"
format_command := "~/go/bin/gofumpt -l -w ."

default:
  just --list

fmt:
  {{ format_command }}

run *arguments="":
  go run ./cmd/{{ name }} {{ arguments }}

build:
  go build -o {{ name }} ./cmd/{{ name }}