REANA-UI is a component of the REANA reusable and reproducible research data analysis platform. REANA-UI provides a web interface to review production and historical workflows.
- Profile page containing REANA access token
- List of personal workflows
- Workflow details page containing logs, files, specification
- GitLab integration to load your workflow repositories
- Cluster health status page
The detailed information on how to install and use REANA can be found in docs.reana.io.
$ git clone https://github.com/reanahub/reana-ui.git
$ cd reana-ui/reana-ui
$ yarn
$ yarn start # make sure REANA_SERVER_URL env var is set
$ firefox localhost:3000
start
: start a development server with live reloadbuild
: build a production-ready bundle in thebuild
foldertest
: run unit testslint
: run linterprettier
: check code formatting withprettier
fmt
: fix formatting problems withprettier
ci
: run both linter and format checkers, useful before committing changes