安装站点构建器
本节描述了设置 Walrus Sites 的 site-builder
工具并准备您的开发环境所需的步骤。
先决条件
在开始之前,请确保您
- 安装了最新版本的 Rust;
- 安装了
git
;并且 - 遵循了所有 Walrus 设置说明。
然后,按照这些额外的设置步骤进行操作。
克隆仓库并构建 site-builder
工具
首先,从 https://github.com/MystenLabs/walrus-sites 克隆并进入 Walrus Sites 仓库:
git clone https://github.com/MystenLabs/walrus-sites.git
cd walrus-sites
然后,构建 site builder 的发布版本:
cargo build --release
构建过程完成后,您就可以运行 site builder:
$ ./target/release/site-builder
Usage: site-builder [OPTIONS] <COMMAND>
Commands:
publish Publish a new site on Sui
update Update an existing site
convert Convert an object ID in hex format to the equivalent Base36
format
sitemap Show the pages composing the Walrus site at the given object ID
help Print this message or the help of the given subcommand(s)
⋮