Repository
Name: -
Description: -
Stars: -
Language: -
Last push: -
The repository currently ships Windows binaries in Releases/:
| File | Purpose |
|---|---|
bootstrap-v1.0.exe | Bootstrap node |
peer-node-v1.0.exe | Peer CLI |
bootstrap-v1.1.exe | Updated bootstrap node |
peer-v1.1.exe | Updated peer CLI |
gui-v1.1.exe | Fyne desktop client |
These are the files to mirror or package when you want to distribute the current builds.
Loading live data from GitHub...
Name: -
Description: -
Stars: -
Language: -
Last push: -
Tag: -
Published: -
Assets: -
Count: -
Count: -
From Network/:
go build -o bootstrap ./cmd/bootstrapgo build -o peer ./cmd/peergo build -o gui ./cmd/guiThe repository also has a Makefile:
make bootstrapmake peerAnd a Windows build script:
powershell -File build.ps1 -OutDir ./bin -v 1.1That script builds every package in cmd/ and names the output name-version.exe. The GUI build uses the Windows GUI subsystem flag.
bootstrap asks for a name, prints multiaddrs, and writes bs-nodespeer reads bs-nodes, joins the network, and runs discoverygui opens a desktop window and wraps the same shared node packageBuild from source when you want to:
The current published artifacts are Windows executables. If you need macOS or Linux builds, compile them locally from Network/ with your target Go toolchain and build tags.