From b6944d0bae3c53bff64ce31d2609135eb0807eb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=80=83=E7=94=9F=E8=88=B1?= Date: Fri, 19 Sep 2025 22:43:25 +0800 Subject: [PATCH] docs: Fix duplicate postgresql package and punctuation error (#38478) Found duplicate `postgresql` package in installation command. Uncertain whether it should be `postgresql-contrib` or `postgresql-client`, but neither appears necessary. Release Notes: - N/A --- docs/src/development/local-collaboration.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/src/development/local-collaboration.md b/docs/src/development/local-collaboration.md index eb7f3dfc43dc29ee3d25de3dbc373f5f925ba2af..87363a4269ac32ac39598efef640b80384d1f44a 100644 --- a/docs/src/development/local-collaboration.md +++ b/docs/src/development/local-collaboration.md @@ -48,17 +48,17 @@ You can install these dependencies natively or run them under Docker. - Follow the steps in the [collab README](https://github.com/zed-industries/zed/blob/main/crates/collab/README.md) to configure the Postgres database for integration tests -Alternatively, if you have [Docker](https://www.docker.com/) installed you can bring up all the `collab` dependencies using Docker Compose: +Alternatively, if you have [Docker](https://www.docker.com/) installed you can bring up all the `collab` dependencies using Docker Compose. ### Linux 1. Install [Postgres](https://www.postgresql.org/download/linux/) ```sh - sudo apt-get install postgresql postgresql # Ubuntu/Debian - sudo pacman -S postgresql # Arch Linux - sudo dnf install postgresql postgresql-server # RHEL/Fedora - sudo zypper install postgresql postgresql-server # OpenSUSE + sudo apt-get install postgresql # Ubuntu/Debian + sudo pacman -S postgresql # Arch Linux + sudo dnf install postgresql postgresql-server # RHEL/Fedora + sudo zypper install postgresql postgresql-server # OpenSUSE ``` 2. Install [Livekit](https://github.com/livekit/livekit-cli)