moved to Docker

This commit is contained in:
2025-02-24 18:53:25 -05:00
parent 9626426455
commit c5cd1a4399
13 changed files with 137 additions and 33 deletions
+15
View File
@@ -0,0 +1,15 @@
PORT=15521
.PHONY: run-batched run-sqlite setup-sqlite
run-batched:
cd batched-server && go run main.go $(PORT)
run-sqlite: setup-sqlite
cd sqlite-server && go run main.go $(PORT)
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