From cd0b07b3adb36fb5ec098f9e511ab45d774fee7b Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Tue, 30 Jan 2018 12:41:01 -0500 Subject: Move to Prisma Backend --- backend/database/prisma.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 backend/database/prisma.yml (limited to 'backend/database/prisma.yml') diff --git a/backend/database/prisma.yml b/backend/database/prisma.yml new file mode 100644 index 0000000..6570be2 --- /dev/null +++ b/backend/database/prisma.yml @@ -0,0 +1,21 @@ +# the name for the service (will be part of the service's HTTP endpoint) +service: my-own + +# the cluster and stage the service is deployed to +stage: ${env:PRISMA_STAGE} + +# to disable authentication: +# disableAuth: true +secret: ${env:PRISMA_SECRET} + +# the file path pointing to your data model +datamodel: datamodel.graphql + +# uncomment the following two lines to seed your service with initial data +# seed: +# import: seed.graphql + +cluster: ${env:PRISMA_CLUSTER} + + +disableAuth: true \ No newline at end of file -- cgit v1.3