Skip to content

Commit a83ea2c

Browse files
authored
Dashboard navigation updates (#2830)
1 parent 9c7fc2d commit a83ea2c

File tree

66 files changed

+112
-115
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+112
-115
lines changed

docs/_partials/clerk-middleware-options.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The `clerkMiddleware()` function accepts an optional object. The following optio
3939
- `jwtKey`
4040
- `string`
4141

42-
Used to verify the session token in a networkless manner. Supply the **JWKS Public Key** from the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard. **It's recommended to use [the environment variable](/docs/guides/development/clerk-environment-variables) instead.** For more information, refer to [Manual JWT verification](/docs/guides/sessions/manual-jwt-verification).
42+
Used to verify the session token in a networkless manner. Supply the **JWKS Public Key** from the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard. **It's recommended to use [the environment variable](/docs/guides/development/clerk-environment-variables) instead.** For more information, refer to [Manual JWT verification](/docs/guides/sessions/manual-jwt-verification).
4343

4444
---
4545

@@ -74,12 +74,12 @@ The `clerkMiddleware()` function accepts an optional object. The following optio
7474
- `publishableKey`
7575
- `string`
7676

77-
The Clerk Publishable Key for your instance. This can be found on the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard.
77+
The Clerk Publishable Key for your instance. This can be found on the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard.
7878

7979
---
8080

8181
- `secretKey?`
8282
- `string`
8383

84-
The Clerk Secret Key for your instance. This can be found on the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard. The `CLERK_ENCRYPTION_KEY` environment variable must be set when providing `secretKey` as an option, refer to [Dynamic keys](#dynamic-keys).
84+
The Clerk Secret Key for your instance. This can be found on the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard. The `CLERK_ENCRYPTION_KEY` environment variable must be set when providing `secretKey` as an option, refer to [Dynamic keys](#dynamic-keys).
8585
</Properties>

docs/_partials/clerk-options.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
- `secretKey` (required)
33
- `string`
44

5-
The Clerk Secret Key from the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard.
5+
The Clerk Secret Key from the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard.
66

77
---
88

99
- `jwtKey?`
1010
- `string`
1111

12-
The **JWKS Public Key** from the [**API keys**](https://dashboard.clerk.com/~/api-keys) in the Clerk Dashboard. For more information, refer to [Manual JWT verification](/docs/guides/sessions/manual-jwt-verification).
12+
The **JWKS Public Key** from the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) in the Clerk Dashboard. For more information, refer to [Manual JWT verification](/docs/guides/sessions/manual-jwt-verification).
1313

1414
---
1515

1616
- `publishableKey?`
1717
- `string`
1818

19-
The Clerk Publishable Key from the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard.
19+
The Clerk Publishable Key from the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard.
2020

2121
---
2222

docs/_partials/clerk-provider/properties.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
- `publishableKey`
103103
- `string`
104104

105-
The Clerk Publishable Key for your instance. This can be found on the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard.
105+
The Clerk Publishable Key for your instance. This can be found on the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard.
106106

107107
---
108108

docs/_partials/root-auth-loader.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The `rootAuthLoader()` function accepts an optional object. The following option
3232
- `jwtKey`
3333
- `string`
3434

35-
Used to verify the session token in a networkless manner. Supply the **JWKS Public Key** from the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard. **It's recommended to use [the environment variable](/docs/guides/development/clerk-environment-variables#api-and-sdk-configuration) instead.** For more information, refer to [Manual JWT verification](/docs/guides/sessions/manual-jwt-verification).
35+
Used to verify the session token in a networkless manner. Supply the **JWKS Public Key** from the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard. **It's recommended to use [the environment variable](/docs/guides/development/clerk-environment-variables#api-and-sdk-configuration) instead.** For more information, refer to [Manual JWT verification](/docs/guides/sessions/manual-jwt-verification).
3636

3737
---
3838

@@ -46,14 +46,14 @@ The `rootAuthLoader()` function accepts an optional object. The following option
4646
- `publishableKey`
4747
- `string`
4848

49-
The Clerk Publishable Key for your instance. This can be found in the **[**API keys**](https://dashboard.clerk.com/~/api-keys) page -> Show Publishable Key** section in the Clerk Dashboard. It's recommended to use [the environment variable](/docs/guides/development/clerk-environment-variables#clerk-publishable-and-secret-keys) instead.
49+
The Clerk Publishable Key for your instance. This can be found in the **[**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page -> Show Publishable Key** section in the Clerk Dashboard. It's recommended to use [the environment variable](/docs/guides/development/clerk-environment-variables#clerk-publishable-and-secret-keys) instead.
5050

5151
---
5252

5353
- `secretKey?`
5454
- `string`
5555

56-
The Clerk Secret Key for your instance. This can be found on the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard. It's recommended to use [the environment variable](/docs/guides/development/clerk-environment-variables#clerk-publishable-and-secret-keys) instead.
56+
The Clerk Secret Key for your instance. This can be found on the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard. It's recommended to use [the environment variable](/docs/guides/development/clerk-environment-variables#clerk-publishable-and-secret-keys) instead.
5757

5858
---
5959

docs/_partials/ruby/configuration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The configuration object provides a flexible way to configure the SDK. When a configuration value is not explicitly provided, it will fall back to checking the corresponding [environment variable](/docs/reference/ruby/overview#available-environment-variables). You must provide your Clerk Secret Key, which can be retrieved from the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard.
1+
The configuration object provides a flexible way to configure the SDK. When a configuration value is not explicitly provided, it will fall back to checking the corresponding [environment variable](/docs/reference/ruby/overview#available-environment-variables). You must provide your Clerk Secret Key, which can be retrieved from the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard.
22

33
The following example shows how to set up your configuration object:
44

docs/getting-started/quickstart.android.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ sdk: android
5353

5454
<SignedIn>
5555
1. Create a subclass of `Application` named after your application (e.g., `MyClerkApp`).
56-
1. In this subclass, override the `onCreate()` method and call `Clerk.initialize()` to initialize the Clerk Android SDK with your application context (`this`) and Clerk Publishable Key. Your Publishable Key can always be retrieved from the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard.
56+
1. In this subclass, override the `onCreate()` method and call `Clerk.initialize()` to initialize the Clerk Android SDK with your application context (`this`) and Clerk Publishable Key. Your Publishable Key can always be retrieved from the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard.
5757
</SignedIn>
5858

5959
<SignedOut>
@@ -62,7 +62,7 @@ sdk: android
6262

6363
To find your Publishable Key:
6464

65-
1. In the Clerk Dashboard, navigate to the [**API keys**](https://dashboard.clerk.com/~/api-keys) page.
65+
1. In the Clerk Dashboard, navigate to the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page.
6666
1. Copy your Clerk Publishable Key. It's prefixed with `pk_test_` for development instances and `pk_live_` for production instances.
6767
</SignedOut>
6868

docs/getting-started/quickstart.astro.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ sdk: astro
3939
## Set your Clerk API keys
4040

4141
<SignedIn>
42-
Add the following keys to your `.env` file. These keys can always be retrieved from the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard.
42+
Add the following keys to your `.env` file. These keys can always be retrieved from the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard.
4343
</SignedIn>
4444

4545
<SignedOut>
46-
1. In the Clerk Dashboard, navigate to the [**API keys**](https://dashboard.clerk.com/~/api-keys) page.
46+
1. In the Clerk Dashboard, navigate to the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page.
4747
1. In the **Quick Copy** section, copy your Clerk Publishable and Secret Keys.
4848
1. Paste your keys into your `.env` file.
4949

docs/getting-started/quickstart.chrome-extension.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ sdk: chrome-extension
5959
Plasmo offers [several options](https://docs.plasmo.com/framework/env) for environment variable files, as the same codebase can be used for development and production builds, as well as for targeting different browsers. This guide uses `.env.development` and `.env.chrome` files.
6060

6161
<SignedIn>
62-
Add the following keys to your `.env.development` file. These keys can always be retrieved from the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard.
62+
Add the following keys to your `.env.development` file. These keys can always be retrieved from the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard.
6363
</SignedIn>
6464

6565
<SignedOut>
66-
1. In the Clerk Dashboard, navigate to the [**API keys**](https://dashboard.clerk.com/~/api-keys) page.
66+
1. In the Clerk Dashboard, navigate to the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page.
6767
1. In the **Quick Copy** section, select **Chrome Extension** and copy your Clerk Publishable Key and Frontend API URL.
6868
1. Paste your keys into your `.env.development` file.
6969

docs/getting-started/quickstart.expo.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ sdk: expo
4343
## Set your Clerk API keys
4444

4545
<SignedIn>
46-
Add your Clerk Publishable Key to your `.env` file. It can always be retrieved from the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard.
46+
Add your Clerk Publishable Key to your `.env` file. It can always be retrieved from the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard.
4747
</SignedIn>
4848

4949
<SignedOut>
50-
1. In the Clerk Dashboard, navigate to the [**API keys**](https://dashboard.clerk.com/~/api-keys) page.
50+
1. In the Clerk Dashboard, navigate to the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page.
5151
1. In the **Quick Copy** section, copy your Clerk Publishable Key.
5252
1. Paste your key into your `.env` file.
5353

docs/getting-started/quickstart.expressjs.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ Learn how to integrate Clerk into your Express backend for secure user authentic
4141
## Set your Clerk API keys
4242

4343
<SignedIn>
44-
Add the following keys to your `.env` file. These keys can always be retrieved from the [**API keys**](https://dashboard.clerk.com/~/api-keys) page in the Clerk Dashboard.
44+
Add the following keys to your `.env` file. These keys can always be retrieved from the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page in the Clerk Dashboard.
4545
</SignedIn>
4646

4747
<SignedOut>
48-
1. In the Clerk Dashboard, navigate to the [**API keys**](https://dashboard.clerk.com/~/api-keys) page.
48+
1. In the Clerk Dashboard, navigate to the [**API keys**](https://dashboard.clerk.com/~/settings/api-keys) page.
4949
1. In the **Quick Copy** section, copy your Clerk Publishable and Secret Keys.
5050
1. Paste your keys into your `.env` file.
5151

0 commit comments

Comments
 (0)