docs: project docs, scripts, deployment configs, and evidence

This commit is contained in:
2026-04-02 11:22:17 +08:00
parent 4718980ab5
commit bbeeb63dfa
396 changed files with 165018 additions and 0 deletions

11
build.bat Normal file
View File

@@ -0,0 +1,11 @@
@echo off
cd /d d:\project
set GOWORK=off
go build -o server.exe ./cmd/server
if exist server.exe (
echo Build succeeded!
dir server.exe
) else (
echo Build may have failed or no output
go build -v ./cmd/server
)