apollo-server-prisma-starter
apollo-server-prisma-starter copied to clipboard
Prisma Apollo Server Starter
This repository provides a starting point to work with apollo-server and prisma
Getting started
- Clone this repo
- Run
npm installto grab dependencies from npm. - Start prisma and database instance using
docker-compose up -d(Runyarn deploy -nto use prisma demo servers) - Deploy the datamodel using
prisma deploy - Start the server using
npm run dev
(Use npm run start to run without watch mode)