This project targets Bun 1.3.x for all scripts.
- Install Bun (Windows PowerShell):
irm https://bun.sh/install.ps1 | iex
- Install dependencies:
bun install - Start the dev server:
bun run devand open http://localhost:3000
Tip: set
BUN_INSTALL_CACHE_DIRto reuse dependency caches across CI or multiple local checkouts.
Run bun run lint, bun run typecheck, or bun run analyze for targeted checks. Use bun run prepare to clear local caches (.next/cache, node_modules/.cache) before benchmarking.
- Build the static site with
bun run build. When building for GitHub Pages set the environment variableGITHUB_PAGES=trueso the correct base path and asset prefix are applied. - Preview the export locally by serving the generated
outdirectory. Example on PowerShell:bun run build; bunx serve out. - Deployments are automated via the GitHub Actions workflow in
.github/workflows/deploy.yml, which pushes the static output to the GitHub Pages environment.
This project is licensed under the MIT License.