spring-graphql-demo/src/main/resources/application.yml

30 lines
488 B
YAML
Raw Normal View History

2021-08-07 09:21:08 +07:00
server:
port: 8081
# Spring Boot
2021-08-07 09:21:08 +07:00
spring:
datasource:
url: jdbc:postgresql://192.168.0.202:5432/graphql-demo
username: cubetiq
password: cubetiq007
driver-class-name: org.postgresql.Driver
# Spring Boot Actuator
management:
endpoints:
web:
exposure:
include: health,info,metrics
# GraphQL Voyager
voyager:
enabled: true
cdn:
enabled: false
# GraphQL Playground
graphql:
playground:
enabled: true
cdn:
enabled: false