Initial project structure for Wrenn Sandbox

Set up directory layout, Makefiles, go.mod files, docker-compose,
and empty placeholder files for all packages.
This commit is contained in:
2026-03-09 17:22:47 +06:00
commit bd78cc068c
80 changed files with 1390 additions and 0 deletions

17
envd/Makefile Normal file
View File

@ -0,0 +1,17 @@
LDFLAGS := -s -w
.PHONY: build clean fmt vet
build:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="$(LDFLAGS)" -o envd .
@file envd | grep -q "statically linked" || \
(echo "ERROR: envd is not statically linked!" && exit 1)
clean:
rm -f envd
fmt:
gofmt -w .
vet:
go vet ./...