design.jobhunter07.com

A Next.js application with Storybook for component development and documentation.

Getting Started

Prerequisites

Installation

Install the dependencies:

npm install

Development

Run the Next.js development server:

npm run dev

Open http://localhost:3000 in your browser to see the application.

Storybook

This project uses Storybook for component development and documentation.

Running Storybook

To start Storybook in development mode:

npm run storybook

Storybook will start on http://localhost:6006.

Building Storybook

To build a static version of Storybook:

npm run build-storybook

The built files will be in the storybook-static directory.

Deployed Storybook

The Storybook is automatically deployed to GitHub Pages on every push to the main branch.

The deployment is handled by a GitHub Actions workflow that:

  1. Builds the Storybook static site
  2. Deploys it to GitHub Pages
  3. Serves it from the custom domain

Available Scripts