Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
Remove "go install" README instructions (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
cretz authored Sep 30, 2022
1 parent 4540ae4 commit 4514df3
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,7 @@ Features that align with this goal:

### Download and Start Temporal Server Locally

Build from source using [go install](https://golang.org/ref/mod#go-install):

> Note: Go 1.18 or greater is currently required.
```bash
go install github.com/temporalio/temporalite/cmd/temporalite@latest
```
Download and extract the [latest release](https://github.com/temporalio/temporalite/releases/latest) from [GitHub releases](https://github.com/temporalio/temporalite/releases).

Start Temporal server:

Expand Down Expand Up @@ -91,18 +85,14 @@ temporalite start --ephemeral

### Web UI

The `temporalite` binary can be compiled to omit static assets for installations that will never use the UI:

```bash
go install -tags headless github.com/temporalio/temporalite/cmd/temporalite@latest
```

The UI can also be disabled via a runtime flag:
By default the web UI is started with Temporalite. The UI can be disabled via a runtime flag:

```bash
temporalite start --headless
```

To build without static UI assets, use the `headless` build tag when running `go build`.

### Dynamic Config

Some advanced uses require Temporal dynamic configuration values which are usually set via a dynamic configuration file inside the Temporal configuration file. Alternatively, dynamic configuration values can be set via `--dynamic-config-value KEY=JSON_VALUE`.
Expand Down

0 comments on commit 4514df3

Please sign in to comment.