Deploying a Prisma GraphQL API

1 · · Dec. 18, 2019, midnight
Summary
In this article, we’re going to go over how to deploy your Prisma API for production use for your sites and apps. For the purposes of this article, we’ll be making use of Prisma Cloud and Heroku to deploy our service. Prerequisites You’ll need a basic Node.js-based Prisma GraphQL application, which you can clone from this boilerplate repo here. Just remember to move into the prisma folder and start a new Docker container. $ npm install $ docker-compose up -d $ prisma deploy You’ll also need to ...