One-liner to auto-install & run (& dev) a fdevc runnable project for Sui workshop powered by fdevc
Move Docs: Move-Book with AI
curl -fsSL https://raw.githubusercontent.com/philogicae/sui-workshop/main/install_and_run | bash📁 sui-workshop
├── install_and_run # Auto-install script
├── launch.sh # Container launcher
├── 📁 project # Git project mount
└── 📁 fdevc_setup # Setup scripts mount
└── runnable.sh # Main container script
install_and_run- Installation script that ensuresfdevcis available, clones this repository, and runslaunch.sh.launch.sh- Helper script to launch a container usingfdevcwith predefined settings. Edit the configuration variables at the top to customize ports, image, persistence, etc.fdevc_setup/runnable.sh- The main script that runs inside the container (complete Sui setup).project/- The mounted target folder for git cloned project
Required: sui-workshop is running (quick install script or ran ./launch.sh directly)
-
Import an existing config into
./fdevc_setup, else a new one will be created (client.yaml,sui.keystore,dev.passphrase). -
Import your
dev passphrase(./fdevc_setup/dev.passphrase) inSlushbrowser extension and claim faucet. -
Try out Sui template at http://localhost:5173 (or any other forwarded port you configured)
-
Open
sui-workshopin your IDE and start coding!