SHELL := /bin/bash
HTTP_PORT ?= 80

install: install_tests install_ui

install_tests:
	cd tests && npm ci

install_ui:
	cd ui && npm ci

start: start_ui

start_all: start_ui test storybook

start_ui:
	cd ui && npm start

test:
	cd tests && npm test

storybook:
	cd ui && npm run storybook

build:
	cd ui && npm run build
