Getting started
Last updated
Last updated
If you would like just have a quick peak at a working project how a look at our .
Install the following node modules dependencies. If you already have a Prisma project you can go ahead and simply install prisma-extension-bark
only and skip to the next step.
Run Prisma initialization command. (This will create new a folder named prisma
with a prisma.schema
file.)
In your schema.prisma
file create a node
model with the minimum required fields for Bark to work and the field you would like to have on this model. For more information on the model refer to documentation.
Run the following command to create a new database migration. For more information on this Prisma CLI command .
Nearly there! Create a new .js/.ts file and extend your Prisma client. .
Have a look at our to discover what else you can do with Bark.