Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1020 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 1020 Bytes

Test Project

Development

Pre-requisites

Running the application

This application runs on docker. To run the application for development, run yarn docker:compose. If you'd like to run it in daemon mode, just run yarn docker:compose -d.

Architecture

This repo is structured using yarn workspaces. These workspaces are organized in the following way:

  • web: A typescript React web app running on NextJs

Storybook

The web package also features a storybook for components. To run:

  • cd web
  • yarn
  • yarn storybook
  • Navigate to localhost:6006 in your browser

Alternatively this can be run through docker via yarn docker:compose:storybook from the root of the repo