Skip to content

Commit 39e9557

Browse files
minor copy changes
1 parent 709f572 commit 39e9557

File tree

1 file changed

+1
-19
lines changed

1 file changed

+1
-19
lines changed

content/800-guides/420-clerk-astro.mdx

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ It will prompt you to customize your setup. Choose the defaults:
3434

3535
- *How would you like to start your new project?* `Empty`
3636
- *Install dependencies?* `Yes`
37-
- *Do you plan to write TypeScript?* `Yes`
38-
- *How strict should TypeScript be?* `Strict`
3937
- *Initialize a new git repository?* `Yes`
4038

4139
:::
@@ -200,21 +198,7 @@ This will create:
200198

201199
### 3.2. Define your Prisma Schema
202200

203-
In the `prisma/schema.prisma` file, configure the generator output path to store the generated Prisma Client in your `src` directory:
204-
205-
```prisma file=prisma/schema.prisma
206-
generator client {
207-
provider = "prisma-client"
208-
//add-next-line
209-
output = "../src/generated/prisma"
210-
}
211-
212-
datasource db {
213-
provider = "postgresql"
214-
}
215-
```
216-
217-
Now add a `User` model that will store authenticated user information from Clerk. The `clerkId` field uniquely links each database user to their Clerk account:
201+
Add a `User` model that will store authenticated user information from Clerk. The `clerkId` field uniquely links each database user to their Clerk account:
218202

219203
```prisma file=prisma/schema.prisma
220204
generator client {
@@ -451,8 +435,6 @@ Copy the ngrok `Forwarding URL` (e.g., `https://a65a60261342.ngrok-free.app`). T
451435
Astro needs to be configured to accept connections from the ngrok domain. Update your `astro.config.mjs` to include the ngrok host in the allowed hosts list:
452436

453437
```javascript file=astro.config.mjs
454-
//add-next-line
455-
// @ts-check
456438
import { defineConfig } from "astro/config";
457439
import node from "@astrojs/node";
458440
import clerk from "@clerk/astro";

0 commit comments

Comments
 (0)