blob: 6570be21708ef71327d5f70413e6de872cf4c7c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|