My design portfolio to showcase my projects. Built with Next.js. View the live site.
Make sure you have Node.js 22.22.1 and Bun 1.3.10 installed. This repo uses the checked-in bun.lock, so use Bun for all package scripts and dependency installs.
bun install --frozen-lockfileOnce it's done, start the full local environment with:
bun run devThat launches the Next site on 3201 and Storybook on 3202 through the
repo-native coordinator in scripts/dev.mjs. Press Ctrl-C to stop both.
To run only the Next site or only Storybook:
bun run dev:site
bun run storybookTo create a production build:
bun run build