| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- spring:
- datasource:
- platform: postgres
- url: jdbc:postgresql://localhost:5432/crss_reg
- username: crss_reg
- password: crss_reg
- driverClassName: org.postgresql.Driver
- jpa:
- database: POSTGRESQL
- show-sql: true
- hibernate:
- ddl-auto: none
- properties:
- jadira.usertype.autoRegisterUserTypes: true
- javax.persistence.schema-generation.database.action: none
- javax.persistence.schema-generation.create-source: metadata
- javax.persistence.schema-generation.scripts.action: drop-and-create
- javax.persistence.schema-generation.scripts.create-target: create.sql
- javax.persistence.schema-generation.scripts.drop-target: drop.sql
- mail:
- host: smtp.gmail.com
- port: 587
- username: demo.exist.pemc@gmail.com
- # please provide the password
- password: $pockTest
- properties:
- mail.smtp.auth: true
- mail.debug: true
- mail.smtp.starttlls.enable: true
- mail.smtp.starttls.required: true
- #we dont need spring mvc here
- freemarker:
- enabled: false
- template-loader-path: classpath:/mail/templates
- server:
- port: 8081
- security:
- oauth2:
- client:
- accessTokenUri: http://localhost:8082/oauth/access_token
- userAuthorizationUri: http://localhost:8082/oauth/authorize
- resource:
- userInfoUri: http://localhost:8082/user
- eureka:
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- graylog:
- host: localhost
|