Temporal command-line interface and development server.
Reference the documentation for detailed install information.
brew install temporal
- Download the version for your OS and architecture:
- Linux amd64
- Linux arm64
- macOS amd64
- macOS arm64 (Apple silicon)
- Windows amd64
- Extract the downloaded archive.
- Add the
temporal
binary to yourPATH
(temporal.exe
for Windows).
docker run --rm temporalio/temporal --help
Note that for dev server to be accessible from host system, it needs to listen on external IP and the ports need to be forwarded:
docker run --rm -p 7233:7233 -p 8233:8233 temporalio/temporal:latest server start-dev --ip 0.0.0.0
# UI is now accessible from host at http://localhost:8233/
- Install Go
- Clone repository
- Switch to cloned directory, and run
go build ./cmd/temporal
The executable will be at temporal
(temporal.exe
for Windows).
Reference the documentation for detailed usage information.
See CONTRIBUTING.md.