diff --git a/src/mdx/get-started/mysql/ConnectMySQL.mdx b/src/mdx/get-started/mysql/ConnectMySQL.mdx index 35fba7807..a71c8d831 100644 --- a/src/mdx/get-started/mysql/ConnectMySQL.mdx +++ b/src/mdx/get-started/mysql/ConnectMySQL.mdx @@ -1,7 +1,7 @@ import Callout from '@mdx/Callout.astro'; import CodeTabs from "@mdx/CodeTabs.astro"; -Create a `index.ts` file in the `src/db` directory and initialize the connection: +Create a `index.ts` file in the `src` directory and initialize the connection: ```typescript copy diff --git a/src/mdx/get-started/mysql/ConnectPlanetScale.mdx b/src/mdx/get-started/mysql/ConnectPlanetScale.mdx index 0b091024d..31ddf26a1 100644 --- a/src/mdx/get-started/mysql/ConnectPlanetScale.mdx +++ b/src/mdx/get-started/mysql/ConnectPlanetScale.mdx @@ -1,4 +1,4 @@ -Create a `index.ts` file in the `src/db` directory and initialize the connection: +Create a `index.ts` file in the `src` directory and initialize the connection: ```typescript copy import { drizzle } from "drizzle-orm/planetscale-serverless"; diff --git a/src/mdx/get-started/mysql/ConnectTiDB.mdx b/src/mdx/get-started/mysql/ConnectTiDB.mdx index 0c8c098be..7016c63b0 100644 --- a/src/mdx/get-started/mysql/ConnectTiDB.mdx +++ b/src/mdx/get-started/mysql/ConnectTiDB.mdx @@ -1,4 +1,4 @@ -Create a `index.ts` file in the `src/db` directory and initialize the connection: +Create a `index.ts` file in the `src` directory and initialize the connection: ```typescript copy import { drizzle } from 'drizzle-orm/tidb-serverless'; diff --git a/src/mdx/get-started/postgresql/ConnectNeon.mdx b/src/mdx/get-started/postgresql/ConnectNeon.mdx index 69cf193fe..371aa8c4d 100644 --- a/src/mdx/get-started/postgresql/ConnectNeon.mdx +++ b/src/mdx/get-started/postgresql/ConnectNeon.mdx @@ -2,7 +2,7 @@ import Callout from '@mdx/Callout.astro'; import CodeTabs from "@mdx/CodeTabs.astro"; import Section from "@mdx/Section.astro"; -Create a `index.ts` file in the `src/db` directory and initialize the connection: +Create a `index.ts` file in the `src` directory and initialize the connection: ```typescript import { drizzle } from 'drizzle-orm/neon-http'; diff --git a/src/mdx/get-started/postgresql/ConnectNile.mdx b/src/mdx/get-started/postgresql/ConnectNile.mdx index 75cc660d9..e60e455a5 100644 --- a/src/mdx/get-started/postgresql/ConnectNile.mdx +++ b/src/mdx/get-started/postgresql/ConnectNile.mdx @@ -1,7 +1,7 @@ import Callout from '@mdx/Callout.astro'; import CodeTabs from "@mdx/CodeTabs.astro"; -Create a `index.ts` file in the `src/db` directory and initialize the connection: +Create a `index.ts` file in the `src` directory and initialize the connection: ```typescript copy diff --git a/src/mdx/get-started/postgresql/ConnectPgLite.mdx b/src/mdx/get-started/postgresql/ConnectPgLite.mdx index a83b14ded..d610e10e2 100644 --- a/src/mdx/get-started/postgresql/ConnectPgLite.mdx +++ b/src/mdx/get-started/postgresql/ConnectPgLite.mdx @@ -1,4 +1,4 @@ -Create a `index.ts` file in the `src/db` directory and initialize the connection: +Create a `index.ts` file in the `src` directory and initialize the connection: ```typescript copy import { drizzle } from 'drizzle-orm/pglite'; diff --git a/src/mdx/get-started/postgresql/ConnectPostgreSQL.mdx b/src/mdx/get-started/postgresql/ConnectPostgreSQL.mdx index f449ae7eb..8338305a3 100644 --- a/src/mdx/get-started/postgresql/ConnectPostgreSQL.mdx +++ b/src/mdx/get-started/postgresql/ConnectPostgreSQL.mdx @@ -1,6 +1,6 @@ import CodeTabs from "@mdx/CodeTabs.astro"; -Create a `index.ts` file in the `src/db` directory and initialize the connection: +Create a `index.ts` file in the `src` directory and initialize the connection: ```typescript copy diff --git a/src/mdx/get-started/postgresql/ConnectSupabase.mdx b/src/mdx/get-started/postgresql/ConnectSupabase.mdx index 35e569648..66044d54b 100644 --- a/src/mdx/get-started/postgresql/ConnectSupabase.mdx +++ b/src/mdx/get-started/postgresql/ConnectSupabase.mdx @@ -1,6 +1,6 @@ import Callout from '@mdx/Callout.astro'; -Create a `index.ts` file in the `src/db` directory and initialize the connection: +Create a `index.ts` file in the `src` directory and initialize the connection: ```typescript copy filename="index.ts" import { drizzle } from 'drizzle-orm' diff --git a/src/mdx/get-started/postgresql/ConnectVercel.mdx b/src/mdx/get-started/postgresql/ConnectVercel.mdx index 03c8adee8..4f63d8776 100644 --- a/src/mdx/get-started/postgresql/ConnectVercel.mdx +++ b/src/mdx/get-started/postgresql/ConnectVercel.mdx @@ -1,4 +1,4 @@ -Create a `index.ts` file in the `src/db` directory and initialize the connection: +Create a `index.ts` file in the `src` directory and initialize the connection: ```typescript copy import { drizzle } from 'drizzle-orm/vercel-postgres'; diff --git a/src/mdx/get-started/postgresql/ConnectXata.mdx b/src/mdx/get-started/postgresql/ConnectXata.mdx index 785412cdc..9483fad6c 100644 --- a/src/mdx/get-started/postgresql/ConnectXata.mdx +++ b/src/mdx/get-started/postgresql/ConnectXata.mdx @@ -1,4 +1,4 @@ -Create a `index.ts` file in the `src/db` directory and initialize the connection: +Create a `index.ts` file in the `src` directory and initialize the connection: ```typescript copy" import { drizzle } from 'drizzle-orm/xata-http'; diff --git a/src/mdx/get-started/singlestore/ConnectSingleStore.mdx b/src/mdx/get-started/singlestore/ConnectSingleStore.mdx index f5f0c978d..11c2a5152 100644 --- a/src/mdx/get-started/singlestore/ConnectSingleStore.mdx +++ b/src/mdx/get-started/singlestore/ConnectSingleStore.mdx @@ -1,7 +1,7 @@ import Callout from '@mdx/Callout.astro'; import CodeTabs from "@mdx/CodeTabs.astro"; -Create a `index.ts` file in the `src/db` directory and initialize the connection: +Create a `index.ts` file in the `src` directory and initialize the connection: ```typescript copy