đ Getting Started
Backend Database
TurboETH includes support for prisma
to automatically backend database bindings.
Quickly Create New Datbase
- MongoDB - NoSQL
- PlantScale - MySQL
Quick Start
-
Set the DATABASE_URL in the .env file to point to your existing database. If your database has no tables yet, read https://pris.ly/d/getting-started
-
Set the provider of the datasource block in schema.prisma to match your database: postgresql, mysql, sqlite, sqlserver, mongodb or cockroachdb.
-
Run
prisma db pull
to turn your database schema into a Prisma schema. -
Run
prisma generate
to generate the Prisma Client. You can then start querying your database.
More information in our documentation: https://pris.ly/d/getting-started
Integration
- Schema -
prisma/schema.prisma
Generate
Run the generate
command to automatically generat database client with typings
Only required when adding updating the database schema.