Skip to content

Commit 558322d

Browse files
authored
Updates yourdomain to your-domain (#2684)
1 parent 2c037ed commit 558322d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

docs/guides/development/deployment/chrome-extension.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ For Clerk production instances, there must be a domain associated with the insta
3232
```env {{ filename: '.env.production' }}
3333
PLASMO_PUBLIC_CLERK_PUBLISHABLE_KEY={{pub_key}}
3434
CLERK_FRONTEND_API={{fapi_url}}
35-
PLASMO_PUBLIC_CLERK_SYNC_HOST=https://yourdomain.com
35+
PLASMO_PUBLIC_CLERK_SYNC_HOST=https://your-domain.com
3636
```
3737

3838
## Add production domain to `host_permissions`
@@ -52,7 +52,7 @@ The following example shows how to configure `host_permissions` for production:
5252
"manifest": {
5353
"key": "$CRX_PUBLIC_KEY",
5454
"permissions": ["cookies", "storage"],
55-
"host_permissions": ["https://<yourdomain>/*", "$CLERK_FRONTEND_API/*"]
55+
"host_permissions": ["https://<your-domain>/*", "$CLERK_FRONTEND_API/*"]
5656
}
5757
}
5858
```

docs/guides/development/mcp/connect-mcp-client.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To complete the integration, you'll need to connect an MCP-compatible client to
2626
### Development vs. Production Setup
2727

2828
- **Development**: Start your MCP server by running `npm run dev` and use `http://localhost:3000/mcp` as your server URL.
29-
- **Production**: Use your deployed URL (e.g. `https://yourdomain.com/mcp`) for security and proper functionality.
29+
- **Production**: Use your deployed URL (e.g. `https://your-domain.com/mcp`) for security and proper functionality.
3030
> [!WARNING]
3131
> Always use HTTPS URLs in production environments. HTTP connections are not secure and may not work with all MCP clients.
3232

docs/guides/development/sdk-development/terminology.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A consistent terminology should be used across all user interactions with Clerk'
1111
| Session | A [session](/docs/reference/javascript/session){{ target: '_blank' }} is a secure representation of the authentication state of the current user. Each client can hold multiple sessions on the same device. This is identical to how Gmail works in a browser. |
1212
| User | A user represents the current user of the session. The [`User`](/docs/reference/javascript/user){{ target: '_blank' }} object holds all the basic user information e.g. name, email addresses, phone numbers, etc… including their public, private, and unsafe metadata. |
1313
| Organization | An [organization](/docs/reference/javascript/organization){{ target: '_blank' }} represents the current organization of the session. Users can belong to many organizations. One of them will be the [active organization](!active-organization) of the session. |
14-
| FAPI | [Frontend API of Clerk](https://clerk.com/docs/reference/frontend-api). Example: `https://random-name.clerk.accounts.dev` (Production example: `https://clerk.yourdomain.com`). FAPI is the primary API for Clerk’s UI components. Every Clerk development/production instance has a dedicated FAPI. This is the authentication, session, user & organization management API you or your users will interact with. |
14+
| FAPI | [Frontend API of Clerk](https://clerk.com/docs/reference/frontend-api). Example: `https://random-name.clerk.accounts.dev` (Production example: `https://clerk.your-domain.com`). FAPI is the primary API for Clerk’s UI components. Every Clerk development/production instance has a dedicated FAPI. This is the authentication, session, user & organization management API you or your users will interact with. |
1515
| BAPI | [Backend API of Clerk](/docs/reference/backend-api){{ target: '_blank' }}. Currently set to `https://api.clerk.com`. A restful CRUD API for the server-side. |
1616
| Secret Key | Your app’s Secret Key for use in the backend. Do not expose this on the frontend with a public environment variable. Allows for CRUD operations. |
1717
| Publishable Key | Your app’s Publishable Key for use in the frontend. |

docs/guides/development/troubleshooting/email-deliverability.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Every domain name (i.e. `example.com`, `clerk.com`, etc.) has its own reputation
3333

3434
### Setup a real email address
3535

36-
Email providers will check if there's an actual mailbox behind the "from address" of an email. By default, Clerk will send your emails from [notifications@yourdomain.com](mailto:notifications@yourdomain.com). You should make sure that you set up a mailbox at this email address. If you'd like to use a different "from address", you can change its value via our [Backend API](/docs/reference/backend-api/tag/beta-features/patch/beta_features/instance_settings){{ target: '_blank' }}.
36+
Email providers will check if there's an actual mailbox behind the "from address" of an email. By default, Clerk will send your emails from [notifications@your-domain.com](mailto:notifications@your-domain.com). You should make sure that you set up a mailbox at this email address. If you'd like to use a different "from address", you can change its value via our [Backend API](/docs/reference/backend-api/tag/beta-features/patch/beta_features/instance_settings){{ target: '_blank' }}.
3737

3838
### Email content
3939

docs/guides/sessions/sync-host.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ Clerk allows you to sync the authentication state from your web app to your Chro
3333
</Tab>
3434

3535
<Tab>
36-
Add `PLASMO_PUBLIC_CLERK_SYNC_HOST` to your `.env.production` file. The value should be the [domain that your Clerk Frontend API](https://dashboard.clerk.com/last-active?path=domains) runs on. For example, `https://clerk.yourdomain.com`.
36+
Add `PLASMO_PUBLIC_CLERK_SYNC_HOST` to your `.env.production` file. The value should be the [domain that your Clerk Frontend API](https://dashboard.clerk.com/last-active?path=domains) runs on. For example, `https://clerk.your-domain.com`.
3737

3838
```env {{ filename: '.env.production', mark: [3] }}
3939
PLASMO_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_live_123
40-
CLERK_FRONTEND_API=https://clerk.yourdomain.com
41-
PLASMO_PUBLIC_CLERK_SYNC_HOST=https://clerk.yourdomain.com
40+
CLERK_FRONTEND_API=https://clerk.your-domain.com
41+
PLASMO_PUBLIC_CLERK_SYNC_HOST=https://clerk.your-domain.com
4242
```
4343
</Tab>
4444
</Tabs>

0 commit comments

Comments
 (0)