Skip to content

Latest commit

 

History

History
executable file
·
50 lines (31 loc) · 1.22 KB

README.md

File metadata and controls

executable file
·
50 lines (31 loc) · 1.22 KB

Reveal Frontend

Coverage Status

This is the Reveal web application front end.

The structure of this repo is inherited from create-react-app.

Guidelines

Getting started

First, copy the included .env.sample into .env

cp .env.sample .env

Next install packages using yarn and then start the app:

yarn

yarn start

Configuration

The configurations are located in the configs directory and are split into two modules:

  • env.ts: this module reads configurations from environemt variables
  • settings.ts: this module holds more complicated configurations

Testing

yarn test

Run test and generate coverage report

Generating reports significantly slows down your tests. Therefore, use this option when you only need a coverage report.

yarn test:coverage