Skip to content

A simple project demonstrating simplicity of using Prisma ◭

Notifications You must be signed in to change notification settings

Pasi-D/Prisma-Starter

Repository files navigation

Prisma Starter

Prisma

A simple project aimed to demonstrate the simplicity of using Prisma ◭

You can find the articles associated with this project.

  1. Simplify backend development with Prisma
  2. A deep dive into Prisma Schema
  3. Data modeling with Prisma

Prisma_starter Git Flow

Prerequisites

Use the appropriate node version

If you don't have node installed install the version defined in .nvmrc. You can use nvm to manage the node version.

nvm use

Update environment variables

Create a copy of .env.dist and make the appropriate changes in your .env file

cp .env.dist .env

Running Locally

Install dependencies

You can use either npm or yarn (If using yarn please remove package-lock.json file first)

npm install

Runs the script

npm run serve

Check Linting

npm run lint