Skip to content
Open
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
2 changes: 1 addition & 1 deletion docs/04-get-started/01-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $ flutter doctor
Serverpod is installed using the Dart package manager. To install Serverpod, run the following command in your terminal:

```txt
$ dart install serverpod_cli 3.5.0-beta.9
$ dart install serverpod_cli 4.0.0
```

This command will install the Serverpod command-line interface (CLI) globally on your machine. You can verify the installation by running:
Expand Down
2 changes: 1 addition & 1 deletion docs/06-concepts/11-authentication/01-get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This guide walks you through that, then shows how to test signing up and signing

## Prerequisites

- A project created with `serverpod create` on Serverpod 3.5 or later. For older projects, see [Setup](./setup) first to add the auth module.
- A project created with `serverpod create` on Serverpod 4.0 or later. For older projects, see [Setup](./setup) first to add the auth module.
- The Flutter SDK installed, so you can run the app.
- Docker installed and running, if your project uses a Docker Postgres. Projects on the embedded Postgres option don't need Docker.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Before following this guide, make sure you have:
- A GitHub account with access to [Developer Settings](https://github.com/settings/apps).
- A running Serverpod project (server, client, and Flutter app packages from `serverpod create`).
- The Serverpod auth module installed and configured per the [authentication setup](../../setup). If your project was generated with an older Serverpod version, follow that guide first to add `serverpod_auth_idp_server` and `serverpod_auth_idp_flutter` and to configure `pod.initializeAuthServices()` before continuing.
- `serverpod_auth_idp_server` 3.5.0-beta.8 or later (required for the web callback route).
- `serverpod_auth_idp_server` 4.0.0 or later (required for the web callback route).

## Get your GitHub credentials

Expand Down
Loading