File tree Expand file tree Collapse file tree 5 files changed +6
-14
lines changed Expand file tree Collapse file tree 5 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 1- PRISMA_STAGE = " dev"
21PRISMA_ENDPOINT = " __PRISMA_ENDPOINT__"
3- PRISMA_CLUSTER = " __PRISMA_CLUSTER__"
42PRISMA_SECRET = " mysecret123"
53APP_SECRET = " jwtsecret123"
Original file line number Diff line number Diff line change 1- # the name for the service (will be part of the service's HTTP endpoint)
2- service : graphql-boilerplate
3-
4- # the cluster and stage the service is deployed to
5- stage : ${env:PRISMA_STAGE}
1+ # the endpoint of your service (this also defines the cluster the service will be deployed to)
2+ endpoint : __PRISMA_ENDPOINT__
63
74# to disable authentication:
85# disableAuth: true
Original file line number Diff line number Diff line change 1- # the name for the service (will be part of the service's HTTP endpoint)
2- service : graphql-boilerplate
3-
4- # the cluster and stage the service is deployed to
5- stage : dev
1+ # the endpoint of your service (this also defines the cluster the service will be deployed to)
2+ endpoint : __PRISMA_ENDPOINT__
63
74# to disable authentication:
85# disableAuth: true
Original file line number Diff line number Diff line change 11{
2- "name" : " graphql-boilerplate " ,
2+ "name" : " whoo22hoo " ,
33 "scripts" : {
44 "start" : " node src/index.js" ,
55 "playground" : " prisma playground" ,
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ const server = new GraphQLServer({
4242 ...req ,
4343 db : new Prisma ( {
4444 typeDefs : 'src/generated/prisma.graphql' ,
45- endpoint : '__PRISMA_ENDPOINT__ ' ,
45+ endpoint : 'https://eu1.prisma.sh/public-mesquiteraptor-586/whoo22hoo/dev ' ,
4646 secret : 'mysecret123' ,
4747 debug : true ,
4848 } ) ,
You can’t perform that action at this time.
0 commit comments