Skip to content

Files

Cannot retrieve ahead/behind information for this branch.

Folders and files

NameName
Last commit message
Last commit date
Jul 8, 2024
Mar 8, 2024
Feb 27, 2020
Jan 22, 2025
Feb 20, 2024
Sep 29, 2020
Oct 11, 2024
May 28, 2020
Oct 16, 2023
Jan 9, 2025
Nov 4, 2019
Apr 27, 2022

HuBMAP Data Ingest Portal

The HuBMAP Data Ingest Portal UI is a web application built with React on Nodejs v14 (includes npm). It interacts with the backend APIs (ingest-api, entity-api, and search-api) to register Donor/Sample/Dataset/Upload and makes them searchable (via search-api).

Configuration and local development

Create .env file base on example.env file in the same src directory.

npm install
npm start

Running the following command will create an optimized static build of your app in the build folder:

npm run build

Docker build for DEV/TEST/PROD development

There are a few configurable environment variables to keep in mind:

  • HOST_UID: the user id on the host machine to be mapped to the container. Default to 1000 if not set or null.
  • HOST_GID: the user's group id on the host machine to be mapped to the container. Default to 1000 if not set or null.
cd docker
./docker-development.sh [check|config|build|start|stop|down]