Title here
Summary here
Before getting started with Resolute, ensure you have the following set up.
Resolute requires Go 1.22 or later.
# Check your Go version
go versionIf you need to install or update Go, visit go.dev/dl.
Resolute is built on Temporal, so you’ll need a Temporal server running.
The fastest way to get started:
# Install Temporal CLI
brew install temporal # macOS
# or
curl -sSf https://temporal.download/cli.sh | sh
# Start development server
temporal server start-devThis starts a local Temporal server at localhost:7233 with the Web UI at localhost:8233.
For a more complete local setup:
git clone https://github.com/temporalio/docker-compose.git
cd docker-compose
docker compose upFor production or team development, use Temporal Cloud.
Recommended extensions:
Go support is built-in. No additional configuration needed.
# Verify Go
go version
# Expected: go version go1.22.x ...
# Verify Temporal (if using CLI)
temporal server start-dev &
temporal workflow list
# Expected: Empty list (no workflows yet)Ready to install Resolute? Continue to Installation.