Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 749 Bytes

InstallSteps.md

File metadata and controls

23 lines (18 loc) · 749 Bytes

Setting up Skeleton UI for Pixel Pioneers Hackathon

pnpm create skeleton-app@latest pixel-pioneers-hackathon
  -Select typescript
cd pixel-pioneers-hackathon
pnpm install
pnpm run dev

Set up Prisma

pnpm install prisma --save-dev
npx prisma init

Update

Whenever you update your Prisma schema, you will have to update your database schema using either prisma migrate dev or prisma db push. This will keep your database schema in sync with your Prisma schema. The commands will also regenerate Prisma Client.