summaryrefslogtreecommitdiffstats
path: root/stepped-solutions/FINISHED/backend/src/db.js
blob: 8f662403f88bf9f594d5f69524f3313872087453 (plain)
1
2
3
4
5
6
7
8
9
10
11
// This file connects to the remote prisma DB and gives us the ability to query it with JS
const { Prisma } = require('prisma-binding');

const db = new Prisma({
  typeDefs: 'src/generated/prisma.graphql',
  endpoint: process.env.PRISMA_ENDPOINT,
  secret: process.env.PRISMA_SECRET,
  debug: false,
});

module.exports = db;