Added embed, nix, and a makefile

This commit is contained in:
2026-04-28 14:34:20 -06:00
parent 85a2a3116b
commit 73aff92505
5 changed files with 62 additions and 4 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