This guide outlines the steps to set up the SUI Suxo project and preparing the project environment.
Before starting, ensure the following are installed on your system:
- Git
- Rust and Cargo (latest stable version)
To install SUI CLI please refear SUI documentation
After installing the SUI CLI, set up the SUI Suxo project by following these steps:
- Clone the SUI Suxo project repository:
git clone https://github.com/allartprotocol/suxo-sui.git
- Ensure the project's dependencies are correctly specified in the
Move.toml
file. The providedMove.toml
snippet indicates a dependency on the SUI framework:[dependencies] Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/devnet" }
- Compile the project using the SUI CLI:
sui move build
- To run tests, use the following command:
sui move test
- For deploying or publishing modules to the SUI network, refer to the SUI CLI documentation for specific commands and options.
- The
.gitignore
file is configured to ignore the/build/
directory. Ensure any build artifacts are placed within this directory to keep them out of version control. - For detailed documentation on the SUI CLI and its commands, visit the SUI Documentation.
This guide aims to assist you in getting started with the SUI Suxo project. For further help, consider reaching out to the SUI developer community or reviewing the SUI documentation.