Skip to content

Update installation.mdx #12718

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions docs/pages/getting-started/installation.mdx
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ Start by installing the appropriate package for your framework.
interact with `@auth/core`.
</Callout>

### Setup Environment
### Set up Environment

The only environment variable that is mandatory is the `AUTH_SECRET`. This is a random value used by the library to encrypt tokens and email
verification hashes. (See [Deployment](/getting-started/deployment) to learn more). You can generate one via the official [Auth.js CLI](https://cli.authjs.dev) running:
@@ -162,8 +162,8 @@ Note this creates the Auth.js API, but does not yet protect resources. Continue
</Code.Express>
</Code>

### Setup Authentication Methods
### Set up Authentication Methods

With that, the basic setup is complete! Next we'll setup the first authentication methods and fill out that `providers` array.
With that, the basic setup is complete! Next we'll set up the first authentication methods and fill out that `providers` array.

</Steps>