Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add "Using Prisma with Turso" database guide #5399

Merged
merged 48 commits into from
Nov 3, 2023
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
d1e2b36
add section on embedded databases
ruheni Oct 24, 2023
325b815
more updates to the Turso guide
ruheni Oct 24, 2023
f86b674
chore: update heading levels
ruheni Oct 24, 2023
d24b348
Apply suggestions from code review
ruheni Oct 25, 2023
6c08f0d
update db name used in guide
ruheni Oct 25, 2023
de2b5d4
update guide
ruheni Oct 31, 2023
dcae7f6
chore: fix copy-pasta mistake
ruheni Oct 31, 2023
9721eb6
docs: link to libSQL manifesto
ruheni Oct 31, 2023
54568b6
chore: add features an differences between sqlite and turso
ruheni Oct 31, 2023
037469d
reorder content
ruheni Oct 31, 2023
c38e6af
Merge branch 'main' into turso-guide
ruheni Oct 31, 2023
bb0c219
indent content
ruheni Oct 31, 2023
64ecbff
Create 890-Neon
raoufchebri Jun 7, 2023
633cd01
docs: update Neon docs
ruheni Oct 24, 2023
23efa0d
update heading
ruheni Oct 24, 2023
004470e
Apply suggestions from code review
ruheni Oct 25, 2023
6a97d9a
chore: update top block
ruheni Oct 25, 2023
7d2338a
add serverless driver section
ruheni Oct 25, 2023
95872f2
update admonition about database_url env var
ruheni Oct 25, 2023
d543aca
Apply suggestions from code review
ruheni Oct 27, 2023
f4e4c61
Apply suggestions from code review
ruheni Oct 27, 2023
d7589b7
update example connection string
ruheni Oct 30, 2023
0b30410
minor edits
ruheni Oct 30, 2023
ecdd362
add section on differences to consider
ruheni Oct 30, 2023
e50dd74
chore: delete neon page from pr
ruheni Oct 31, 2023
49207e4
chore: reorder content
ruheni Oct 31, 2023
14c831c
add turso's logo
ruheni Oct 31, 2023
d7499e6
chore: more modifications
ruheni Oct 31, 2023
0267e19
reword
ruheni Oct 31, 2023
23791db
reword
ruheni Oct 31, 2023
d98a22b
reorder content
ruheni Oct 31, 2023
39315b3
Merge branch 'main' into turso-guide
ruheni Nov 1, 2023
37170ba
update content
ruheni Nov 1, 2023
4e9b645
add app middleware example
ruheni Nov 1, 2023
e97297f
edit middleware example
ruheni Nov 1, 2023
57f40c2
update middleware example
ruheni Nov 1, 2023
20f3198
update embedded replica content
ruheni Nov 2, 2023
831171e
Merge branch 'main' into turso-guide
ruheni Nov 2, 2023
0d4748e
Apply suggestions from code review
ruheni Nov 2, 2023
b386441
Apply suggestions from code review
ruheni Nov 2, 2023
5f5706a
update image style
ruheni Nov 3, 2023
f6f7f28
indent code blocks
ruheni Nov 3, 2023
10cf9a6
update how to connect to connect and query a Turso db section
ruheni Nov 3, 2023
d368929
more modifications
ruheni Nov 3, 2023
cb2964d
Merge branch 'main' into turso-guide
ruheni Nov 3, 2023
aaaab90
fix styling
ruheni Nov 3, 2023
6ddcbc6
update headline
ruheni Nov 3, 2023
5f8974d
Merge branch 'main' into turso-guide
ruheni Nov 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: reorder content
  • Loading branch information
ruheni committed Oct 31, 2023
commit 49207e4b33964ed29d7c75cabb65f2d97f394fa0
4 changes: 2 additions & 2 deletions content/300-guides/050-database/900-turso.mdx
ruheni marked this conversation as resolved.
Show resolved Hide resolved
ruheni marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -7,15 +7,15 @@ tocDepth: 3

<TopBlock>

This guide discusses the concepts behind using Prisma and Turso, explains the commonalities and differences between Turso and other database providers, and leads you through the process for configuring your application to integrate with Turso. Turso can also be hosted on a remote server.
This guide discusses the concepts behind using Prisma and Turso, explains the commonalities and differences between Turso and other database providers, and leads you through the process for configuring your application to integrate with Turso.

Prisma support for Turso is currently in [Early Access](/about/prisma/releases#early-access). We would appreciate your feedback in this [GitHub discussion](https://github.com/prisma/prisma/discussions/21345).

</TopBlock>

## What is Turso?

[Turso](https://turso.tech/) is an edge-hosted, distributed database that's based on [libSQL](https://turso.tech/libsql), an open-source and open-contribution fork of [SQLite](https://sqlite.org/), enabling you to bring data closer to your application and minimize query latency.
[Turso](https://turso.tech/) is an edge-hosted, distributed database that's based on [libSQL](https://turso.tech/libsql), an open-source and open-contribution fork of [SQLite](https://sqlite.org/), enabling you to bring data closer to your application and minimize query latency. Turso can also be hosted on a remote server.

## Commonalities with other database providers
ruheni marked this conversation as resolved.
Show resolved Hide resolved
ruheni marked this conversation as resolved.
Show resolved Hide resolved

Loading