This repository provides a starting point to work with apollo-server and prisma
- Clone this repo
- Run
npm install
to grab dependencies from npm. - Start prisma and database instance using
docker-compose up -d
(Runyarn deploy -n
to 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)