Example made with NodeJs, Prisma, GraphQL for a Course Lab.
- start database server:
docker-compose up - create the
.envfile and copy its content from the.env.exampleand change the placeholders. - install packages:
npm install. - start prisma:
npx prisma generate. - commit prisma migration:
npx prisma migrate dev. - apply prisma seed:
npx prisma db seed. - Run the server:
npm run dev.