A crypto trading report generator built with Next.js
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
Open http://localhost:3000 with your browser to see the result.
Check out our Next.js deployment documentation for more details.
Update the prisma/schema.prisma file and run:
npx prisma db push
npx prisma generate
We're not running npx prisma migrate dev
because of some limitations in PlanetScale:
Prisma recommends not using prisma migrate when making schema changes with PlanetScale. Instead, we recommend that you use the prisma db push command.