Files
atridad 16bed1b8c0 First pass at basic functionality.
This PR introduces the beginnings of Sprint Padawan.

Reviewed-on: #1
2026-05-02 02:01:53 -06:00

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