A minimal Sui app scaffolded with @mysten-incubation/create-devstack-app.
pnpm dev # start the devstack supervisor and Vite app
pnpm build # apply the stack, typecheck, and build the app
pnpm test # typecheck and run unit tests
pnpm test:e2e # bring up the test stack and run the Playwright specsdevstack.config.tsdefines the local Sui stack, accounts, Move package(s), and dev wallet.move/counter/contains the core example Move package.src/dapp-kit.tswires dApp Kit to the generated devstack config.src/App.tsxregisters the demo panels (counter, plus any plugins you chose at scaffold).
devstack apply writes runtime state under .devstack/ and generated app bindings under
src/generated/; both are ignored because they are regenerated for each checkout.