Skip to content

Add storybook

Shubham Tiwari requested to merge feat/storybook into main

Targeted Issue: #2 (closed)

Setup Storybook and adds a sample Button component to it.

Running Storybook via Yarn

# By default start the Storybook on port 5000.
yarn storybook

Running Storybook via Docker

# Build and create container for the storybook service.
docker compose -f docker-compose.storybook-deploy.yml up

Running Storybook via Docker

# Builds Lulu Storybook Docker image.
docker build -f Dockerfile-storybook-deploy -t lulu_storybook .

# Create container over the built image, and then starts it on port 80.
docker run -it --name lulu_storybook -p 80:80 lulu_storybook
Edited by Pokhi

Merge request reports