1
0
mirror of synced 2025-12-19 18:11:23 -05:00
Files
blitz/examples/plain-js
2021-08-19 10:15:03 -04:00
..
2020-06-20 15:22:45 +07:00

plain-js

Getting Started

  1. Add this code to db/schema.prisma:
model Project {
  id      Int      @default(autoincrement()) @id
  name    String
}
  1. DB migrate
blitz prisma migrate dev
  1. Start the dev server
blitz dev

Open http://localhost:3000 with your browser to see the result.