Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tendant/workflow-server
https://github.com/tendant/workflow-server
Last synced: about 13 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/tendant/workflow-server
- Owner: tendant
- Created: 2023-05-29T19:03:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-12T18:52:36.000Z (over 1 year ago)
- Last Synced: 2024-10-12T13:31:21.943Z (about 1 month ago)
- Language: Go
- Size: 298 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
## Linuxcurl -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
```