Skip to content

Commit

Permalink
update db name used in guide
Browse files Browse the repository at this point in the history
  • Loading branch information
ruheni committed Oct 25, 2023
1 parent d24b348 commit 6c08f0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/300-guides/050-database/900-turso.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,20 @@ There are a number of differences between Turso and SQLite to consider. You shou
1. Create an authentication token that will allow you to connect to the database:

```sh
turso db tokens create turso-prisma
turso db tokens create turso-prisma-db
```

1. Retrieve your database's connection string:

```sh
turso db show turso-prisma
turso db show turso-prisma-db
```

1. Update your `.env` file with the authentication token and connection string:

```text
TURSO_AUTH_TOKEN="eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9..."
TURSO_DATABASE_URL="libsql://turso-prisma-user.turso.io"
TURSO_DATABASE_URL="libsql://turso-prisma-db-user.turso.io"
```

1. Enable the `driverAdapters` Preview feature flag:
Expand Down

0 comments on commit 6c08f0d

Please sign in to comment.