First pass at basic functionality.

This PR introduces the beginnings of Sprint Padawan.

Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2026-05-02 02:01:53 -06:00
parent 3586be0e14
commit 16bed1b8c0
51 changed files with 4597 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
.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