Select Git revision
gen_genesis_data.rs
-
Hugo Trentesaux authored
* review txmn * fix(#231): next_cert_issuable_on is not used (!308) * fix(#231): next_cert_issuable_on is not used cert_meta.next_issuable_on is computed on genesis without this variable * apply clippy * remove comment (used at line 1236) (cherry picked from commit a6e8ba19) * document burn as disabled * replace raw origin by runtime origin * fix #284 * use mint instead of deposit
Hugo Trentesaux authored* review txmn * fix(#231): next_cert_issuable_on is not used (!308) * fix(#231): next_cert_issuable_on is not used cert_meta.next_issuable_on is computed on genesis without this variable * apply clippy * remove comment (used at line 1236) (cherry picked from commit a6e8ba19) * document burn as disabled * replace raw origin by runtime origin * fix #284 * use mint instead of deposit
build-deb.md 755 B
How to Build Duniter-V2S Debian Package
Compile packages for native integration for Debian-based systems.
With Docker (on any system)
- Install Docker and Docker Buildx.
- Use the
scripts/build-deb.sh
script. - The
.deb
packages will be located in thetarget/debian
folder.
Without Docker (on a Debian-based system)
- Install the necessary dependencies:
sudo apt-get install -y clang cmake protobuf-compiler libssl-dev
- Compile the project:
cargo build --release
- Install
cargo-deb
:cargo install cargo-deb
- Build the Duniter node
.deb
package:cargo deb --no-build -p duniter
- The
.deb
package will be located in thetarget/debian
folder.