The document provides instructions and information on getting started with the SvelteKit Lucia Prisma project. It mentions the cloning of the repository, installation of base packages, initialization of Prisma db, and generation of Prisma client and types. It also highlights some differences in the v1.0 version, including tweaks in the database schema, deprecation of SvelteKit integration, and API name changes.
To get started with the SvelteKit Lucia Prisma project, follow these steps:
Clone the repo:
git clone https://github.com/jt196/sveltekit-lucia-prisma.git
Install the base packages:
npm i
Initialize the Prisma db:
npx prisma migrate dev --name init
Generate the Prisma client and types:
npx prisma generate
The document provides a guide on how to get started with the SvelteKit Lucia Prisma project. It includes instructions for cloning the repository, installing base packages, initializing the Prisma db, and generating the Prisma client and types. It also highlights some differences in the v1.0 version, such as minor tweaks in the database schema, deprecation of SvelteKit integration, and API name changes.