Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tendant/workflow-server


https://github.com/tendant/workflow-server

Last synced: about 13 hours ago
JSON representation

Awesome Lists containing this project

README

        

# Run a local development Temporal Server

https://docs.temporal.io/dev-guide/go/foundations#run-a-development-server

## macOS

brew install temporal
temporal server start-dev

## Linux

curl -sSf https://temporal.download/cli.sh | sh
temporal server start-dev

temporal web ui: http://localhost:8233
temporal openapi: http://localhost:8233/openapi

# Run Expense example

* Start the dummy server
```
go run expense/server/main.go
```

Check server status: http://localhost:8099

* Start workflow and activity workers
```
go run expense/worker/main.go
```
* Start a new expanse workflow execution
```
go run expense/starter/main.go
```