From e3bcd25d9ca24c859615b53b7bc9efbb229eca74 Mon Sep 17 00:00:00 2001 From: Immanuel von Neumann Date: Thu, 13 Mar 2025 11:40:44 +0100 Subject: [PATCH 1/2] website/docs: improve styling --- .../setup/full-dev-environment.mdx | 28 ++++++++++--------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/website/docs/developer-docs/setup/full-dev-environment.mdx b/website/docs/developer-docs/setup/full-dev-environment.mdx index 6e1810a43cad..9cec94d835eb 100644 --- a/website/docs/developer-docs/setup/full-dev-environment.mdx +++ b/website/docs/developer-docs/setup/full-dev-environment.mdx @@ -45,34 +45,36 @@ values={[ To install the native dependencies on macOS, run: - + ```sh $ pip install poetry poetry-plugin-shell $ brew install libxmlsec1 libpq krb5 # Required development libraries, $ brew install postgresql redis node@22 golangci-lint # Required CLI tools - ``` + ``` - To install native dependencies on Debian or Ubuntu, run: + To install native dependencies on Debian or Ubuntu, run: -```sh -$ pip install poetry poetry-plugin-shell -$ sudo apt-get install libgss-dev krb5-config libkrb5-dev postgresql-server-dev-all -$ sudo apt-get install postresql redis -``` + ```sh + $ pip install poetry poetry-plugin-shell + $ sudo apt-get install libgss-dev krb5-config libkrb5-dev postgresql-server-dev-all + $ sudo apt-get install postresql redis + ``` -Adjust your needs as required for other distributions such as Red Hat, SUSE, or Arch. + Adjust your needs as required for other distributions such as Red Hat, SUSE, or Arch. -Install golangci-lint locally [from the site -instructions](https://golangci-lint.run/welcome/install/#other-ci). + Install golangci-lint locally [from the site + instructions](https://golangci-lint.run/welcome/install/#other-ci). - + + [We request community input on running the full dev environment on Windows] - + + From 33d1d4ab33bb0a06a1811d3604b6ff651d416940 Mon Sep 17 00:00:00 2001 From: Immanuel von Neumann Date: Thu, 13 Mar 2025 11:41:23 +0100 Subject: [PATCH 2/2] website/docs: refactor pip to pipx on linux --- website/docs/developer-docs/setup/full-dev-environment.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/developer-docs/setup/full-dev-environment.mdx b/website/docs/developer-docs/setup/full-dev-environment.mdx index 9cec94d835eb..ae881f5498f3 100644 --- a/website/docs/developer-docs/setup/full-dev-environment.mdx +++ b/website/docs/developer-docs/setup/full-dev-environment.mdx @@ -58,7 +58,7 @@ values={[ To install native dependencies on Debian or Ubuntu, run: ```sh - $ pip install poetry poetry-plugin-shell + $ pipx install poetry poetry-plugin-shell $ sudo apt-get install libgss-dev krb5-config libkrb5-dev postgresql-server-dev-all $ sudo apt-get install postresql redis ```