Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/content/_meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ const meta: MetaRecord = {
},
quickstart: {
title: 'Quickstart',
theme: {
breadcrumb: false,
},
theme: {},
},
'open-source': 'Open source edition',
'cloud-offer': 'Cloud offer',
Expand Down
13 changes: 13 additions & 0 deletions src/content/cloud-offer/_meta.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { MetaRecord } from 'nextra'

const meta: MetaRecord = {
'getting-started': 'Getting started',
tools: {
title: 'Tools',
theme: {
collapsed: false,
},
},
}

export default meta
7 changes: 6 additions & 1 deletion src/content/open-source/_meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import type { MetaRecord } from 'nextra'
const meta: MetaRecord = {
installation: 'Installation',
usage: 'Usage',
guides: 'Guides',
guides: {
title: 'Guides',
theme: {
collapsed: false,
},
},
'systems-requirements': 'Systems requirements',
}

Expand Down
26 changes: 26 additions & 0 deletions src/content/open-source/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,32 @@ The following command fetches the Docker image and starts a new container exposi
docker run -d --name lightpanda -p 127.0.0.1:9222:9222 lightpanda/browser:nightly
```

## Install from package manager

### Homebrew

Install the last nightly using Homebrew.

```sh copy
brew install lightpanda-io/browser/lightpanda
```

### Arch Linux User Repository

```sh copy
yay -S lightpanda-bin
```

You can alternatively use the last nightly version with:
```sh copy
yay -S lightpanda-nightly-bin
```

### Debian/Ubuntu

Starting `0.3.0`, a `.deb` is available with each [tagged
release](https://github.com/lightpanda-io/browser/releases).

## Install manually from the nightly builds

The latest binary can be downloaded from the [nightly
Expand Down
Loading