Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 992 Bytes

README.md

File metadata and controls

47 lines (32 loc) · 992 Bytes

Samvera Static Site Template (featuring Hyku)

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.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.

Deployment

This site will be deployed on to Github Pages as a static site. To do a local build of the site, run:

pnpm build

Testing

This 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:ui

Code Quality

To ensure code quality, this site will use ESLint and Prettier. To format project code locally, run:

pnpm format