Skip to content

Commit

Permalink
chore: add install instructions to intro
Browse files Browse the repository at this point in the history
  • Loading branch information
markphelps committed Apr 1, 2024
1 parent b961ff9 commit c621a08
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,31 @@ For more information on any of the concepts described, please see the
Before getting started, make sure the Flipt server is up and running on your
host on your chosen ports. See [Installation](/installation) for more.

<CodeGroup>

```console Binary
curl -fsSL https://get.flipt.io/install | sh
```

```console Docker
docker run -d \
-p 8080:8080 \
-p 9000:9000 \
-v $HOME/flipt:/var/opt/flipt \
docker.flipt.io/flipt/flipt:latest
```

```console Kubernetes/Helm
helm repo add flipt https://helm.flipt.io
helm install flipt flipt/flipt
```

```console Homebrew
brew install flipt-io/brew/flipt
```

</CodeGroup>

In this example, we'll use the default location of http://localhost:8080.

## Flags and Variants
Expand Down

0 comments on commit c621a08

Please sign in to comment.