bun dev # start dev server at http://localhost:3000
INCLUDE_DRAFTS=false NEXT_PUBLIC_BASE_PATH='' bun run build
bun run start # serve static out/ on :3000
bun run e2e:run # run Playwright E2E tests on Chromium
bun run e2e:open # open Playwright UI mode
bun run storybook # start Storybook at http://localhost:6006
bun run storybook:build # output static build to storybook-static/
# Telemetry: set STORYBOOK_DISABLE_TELEMETRY=1 to opt out
./
├── Dockerfile
├── README.md
├── README_JA.md
├── bunfig.toml
├── compose.yml
├── e2e
├── node_modules
├── public
│ └── images
├── scripts
│ ├── ensure-favicon.ts
│ ├── generate-rss.ts
│ ├── inspect-content.ts
│ ├── optimize-images.ts
│ └── utils
├── src
│ ├── app
│ ├── components
│ ├── content
│ │ ├── blogs
│ │ └── publications
│ ├── data
│ │ └── links.yaml
│ ├── lib
│ ├── locales
│ └── types
├── tests
├── package.json
├── biome.json
├── next.config.mjs
├── next-sitemap.config.mts
├── postcss.config.js
├── tsconfig.json
└── vitest.config.mts