Skip to content

Latest commit

 

History

History
57 lines (35 loc) · 1.23 KB

README.md

File metadata and controls

57 lines (35 loc) · 1.23 KB

Web application for paired data for mapping between genomic and metabolomic (mass spectra) projects

This project was bootstrapped with Create React App.

Some information on how to perform common tasks is available in the guide.

Install

Atfer cloning the repo, it's dependencies must be installed.

Requires nodejs v16 or higher.

npm install

Development

npm start

Runs the app in development mode. Open http://localhost:3000 to view it in the browser.

The page will automatically reload if you make changes to the code. You will see the build errors and lint warnings in the console.

Docker

Build with

docker build -t iomega/paired-data-form app

Run with

docker run -d -p 8887:80 iomega/paired-data-form

Goto http://localhost:8887.

Propagate schema changes

When public/schema.json changes the src/schema.ts must also be updated using

npm run schema2ts

Tests

The unit tests can be run with

npm run test