lorenz199x / BE-prisma-trpc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Getting Started

Step 1: Clone the repository and run

# using npm
npm install

# OR using Yarn
yarn install

Step 2: Make sure to add your .env and database connection configuration

# using npm
username = ""
password = ""
host = ""
port = ""
database = ""
sslmode = ""
DATABASE_URL = "mysql://${username}:${password}@${host}:${port}/${database}?ssl-mode=${sslmode}"

Step 3 (Optional and skip to Step 4): If you dont have the prisma migration folder run this command:

npx prisma migrate dev --name init

Step 4: If you have the prisma migration folder run this command to sync the migration:

# using npm
npm run prisma:generate

# OR using Yarn
yarn prisma:generate

Step 5: Check your Prisma Studio:

# using npm
npm run prisma:studio

# OR using Yarn
yarn prisma:studio

Step 6: Lets Run your Application:

# using npm
npm run devstart

# OR using Yarn
yarn devstart

Tech Stack

-Prisma -Trpc

About


Languages

Language:TypeScript 100.0%