This repo is a Next.js static site project providing information about the Hyku application and ecosystem. It will be a static site that will be deployed on Github Pages.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
This site will be deployed on to Github Pages as a static site. To do a local build of the site, run:
pnpm buildThis site will be tested using Playwright. Tests are located in the tests directory. To run tests, run:
# Run tests in headless mode
pnpm test
# Run tests in interactive UI mode
pnpm test:uiTo ensure code quality, this site will use ESLint and Prettier. To format project code locally, run:
pnpm format