Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Example Orchestrator UI

The `example-orchestrator-ui` provides a sample user interface for
[Workflow Orchestrator](https://workfloworchestrator.org). Many users will
start with this UI and eventually extend or customize a fork of this repo
to their own needs.

## Developing the Example Orchestrator UI

```sh
git clone git@github.com:workfloworchestrator/example-orchestrator-ui.git
cd example-orchestrator-ui
npm install
cp .env.example .env
# edit .env.example. You will likely want to set:
# OAUTH2_ACTIVE=false
npm run dev

# In a separate terminal, start the example-orchestrator so there's an API to
# query. This can also be pointed to another orchestrator instance.
git clone git@github.com:workfloworchestrator/example-orchestrator.git
cd example-orchestrator
docker compose up
```
Loading