initial: ZeroTier-like P2P mesh VPN server with multi-tenant Web UI

This commit is contained in:
xieyao
2026-06-17 03:50:23 +08:00
commit ee5f036325
74 changed files with 9517 additions and 0 deletions

9
build.bat Normal file
View File

@@ -0,0 +1,9 @@
@echo off
set GOOS=linux
set GOARCH=amd64
set CGO_ENABLED=0
go build -ldflags="-s -w" -o bin/zeromesh-controller ./cmd/zeromesh-controller/
go build -ldflags="-s -w" -o bin/zeromesh-agent ./cmd/zeromesh-agent/
go build -ldflags="-s -w" -o bin/zeromesh-relay ./cmd/zeromesh-relay/
go build -ldflags="-s -w" -o bin/zeromesh-cli ./cmd/zeromesh-cli/
echo Done.