16bed1b8c0
This PR introduces the beginnings of Sprint Padawan. Reviewed-on: #1
14 lines
205 B
Makefile
14 lines
205 B
Makefile
.PHONY: dev build clean
|
|
|
|
# Run the development server
|
|
dev:
|
|
go run main.go
|
|
|
|
# Build the standalone binary
|
|
build:
|
|
go build -o sprintpadawan main.go
|
|
|
|
# Clean the compiled binary
|
|
clean:
|
|
rm -f sprintpadawan
|