Skip to content

willsather/sather.ws

Repository files navigation

Website

This is the Next.js application that supports my website. You can find it deployed at www.sather.ws.

Local Setup

You can run this locally by:

  1. Install Dependencies

    pnpm install
  2. Start Next.js Development Server

    pnpm dev

Testing

Unit Tests

You can run Vitest unit tests by:

pnpm test

The Vitest configuration can be found here.

Linting

You can run BiomeJS linter and formatter:

pnpm lint

or you can automatically fix the lint and format issues by:

pnpm lint:fix

The BiomeJS configuration can be found here.

Production build

To create a production build, you can:

  1. Install Dependencies

    pnpm install
  2. Build the Next.js Development application

    pnpm build
  3. Start the Next.js Development application

    pnpm start