Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sdsc-ordes/workflow-explorer

An app to recommend workflow managers
https://github.com/sdsc-ordes/workflow-explorer

decision-making webapp workflows

Last synced: about 12 hours ago
JSON representation

An app to recommend workflow managers

Awesome Lists containing this project

README

        

## An app to find the workflow manager you need

This repository includes a simple demo for an app to recommend workflow managers.

## Quickstart

Requirements:

- Python 3.10+
- Python packages: `shiny`, `faicons` and `pandas`

After cloning the repository, run the following command with the path to the `workflow-explorer` folder inside the repo:

```
shiny run --reload app/app.py
```

## Install dependencies via conda

If you have [conda](https://docs.conda.io/projects/conda/en/latest/index.html) installed:

```
conda create -n workflow-explorer python=3.10
conda activate workflow-explorer
pip install shiny faicons pandas shinyswatch
```

To run the app activate the environment:

```
conda activate workflow-explorer
shiny run --reload app/app.py
```