Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sdsc-ordes/workflow-explorer
- Owner: sdsc-ordes
- License: mit
- Created: 2023-07-25T12:20:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-27T15:21:23.000Z (5 months ago)
- Last Synced: 2024-05-27T16:53:43.794Z (5 months ago)
- Topics: decision-making, webapp, workflows
- Language: Python
- Homepage: https://sdsc-ordes.github.io/workflow-explorer/
- Size: 52.5 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```