Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

website/docs: dev docs: bump node/postgres requirements #13516

Merged
merged 3 commits into from
Mar 14, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ If you want to only make changes on the UI, you don't need a backend running fro

### Prerequisites

- Node.js (any recent version should work; we use 20.x to build)
- Node.js (any recent version should work; we use 22.x to build)
- Make (again, any recent version should work)
- Docker and Docker Compose

:::info
Depending on platform, some native dependencies might be required. On macOS, run `brew install node@20`, and for Docker `brew install --cask docker`
Depending on platform, some native dependencies might be required. On macOS, run `brew install node@22`, and for Docker `brew install --cask docker`
:::

### Instructions
Expand Down
4 changes: 2 additions & 2 deletions website/docs/developer-docs/setup/full-dev-environment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import ExecutionEnvironment from "@docusaurus/ExecutionEnvironment";
- [Poetry](https://python-poetry.org/), which is used to manage dependencies
- Poetry 2.0 or higher also requires the [poetry-plugin-shell](https://github.com/python-poetry/poetry-plugin-shell) extension.
- [Go](https://go.dev/) 1.23 or newer
- [Node.js](https://nodejs.org/en) 21 or newer
- [PostgreSQL](https://www.postgresql.org/) 14 or newer
- [Node.js](https://nodejs.org/en) 22 or newer
- [PostgreSQL](https://www.postgresql.org/) 16 or newer
- [Redis](https://redis.io/) (any recent version will do)
- [Docker](https://www.docker.com/) (Community Edition will do)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ If you want to only make changes to the website, you only need node.

### Prerequisites

- Node.js (any recent version should work; we use 20.x to build)
- Node.js (any recent version should work; we use 22.x to build)
- Make (again, any recent version should work)

:::info
Depending on platform, some native dependencies might be required. On macOS, run `brew install node@20`
Depending on platform, some native dependencies might be required. On macOS, run `brew install node@22`
:::

### Instructions
Expand Down
Loading