A quick-start template built on the Sui Stack. This hello world app demonstrates creating and sharing greeting messages that anyone can edit - like a collaborative document where users can create posts and others can modify the text.
Want to see it working immediately? The app comes pre-configured with a published package so you can explore the experience right away:
- Navigate to
/ui/directory - Run
pnpm install - Run
pnpm dev - Visit http://localhost:5173/
This uses existing package IDs so you can experience the app without any setup. To customize the functionality or deploy your own version, follow the steps below.
- Set up the Sui development environment (installation guide)
- Navigate to
/move/hello-world/directory - Run
sui client publishto publish package - Copy the
PackageIDfound in the list ofPublished Objectsin theObject Changessection of the output. Paste it inTESTNET_HELLO_WORLD_PACKAGE_IDin./ui/src/constants.ts.
- Navigate to
/ui/directory. - Run
pnpm install - Run
pnpm dev - Visit http://localhost:5173/
Visit the hello world docs page for a more detailed guide placeholder link