mirror of
https://github.com/DeBrosOfficial/network.git
synced 2025-12-12 22:58:49 +00:00
1.0 KiB
1.0 KiB
Contributing to DeBros Network
Thanks for helping improve the network! This guide covers setup, local dev, tests, and PR guidelines.
Requirements
- Go 1.22+ (1.23 recommended)
- RQLite (optional for local runs; the Makefile starts nodes with embedded setup)
- Make (optional)
Setup
git clone https://github.com/DeBrosOfficial/network.git
cd network
make deps
Build, Test, Lint
- Build:
make build - Test:
make test - Format/Vet:
make fmt vet(ormake lint)
Useful CLI commands:
```bash
./bin/network-cli health
./bin/network-cli peers
./bin/network-cli status
Versioning
- The CLI reports its version via
network-cli version. - Releases are tagged (e.g.,
v0.18.0-beta) and published via GoReleaser.
Pull Requests
- Fork and create a topic branch.
- Ensure
make build testpasses; include tests for new functionality. - Keep PRs focused and well-described (motivation, approach, testing).
- Update README/docs for behavior changes.
Thank you for contributing!