initial code commit

This commit is contained in:
2025-02-08 13:05:53 -05:00
parent d59d9990db
commit a21c17d6d9
8 changed files with 455 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
.PHONY: run-batched run-sqlite setup-sqlite
run-batched:
cd batched-server && go run main.go
run-sqlite: setup-sqlite
cd sqlite-server && go run main.go
setup-sqlite:
@if [ ! -f sqlite-server/go.mod ]; then \
cd sqlite-server && go mod init sqlite-server; \
fi
cd sqlite-server && go get modernc.org/sqlite