Test Project

Development Documentation

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 guide

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