| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- spring:
- profiles: dev
- datasource:
- url: jdbc:postgresql://localhost:5432/crss_sched
- username: crss_sched
- password: crss_sched
- driverClassName: org.postgresql.Driver
- hikari:
- connectionTimeout: 10000
- maximumPoolSize: 20
- jpa:
- database: POSTGRESQL
- properties:
- hibernate:
- dialect: org.hibernate.dialect.PostgreSQL94Dialect
- server:
- port: 8085
- ---
- spring:
- profiles: staging
- datasource:
- url: jdbc:postgresql://192.168.241.62:5432/crss_sched
- username: crss_sched
- password: crss_scheds
- driverClassName: org.postgresql.Driver
- hikari:
- connectionTimeout: 10000
- maximumPoolSize: 20
- jpa:
- database: POSTGRESQL
- properties:
- hibernate:
- dialect: org.hibernate.dialect.PostgreSQL94Dialect
- ---
- spring:
- profiles: uat
- datasource:
- url: jdbc:postgresql://192.168.235.6:5432/crss_sched
- username: crss_sched
- password: crss_sched
- driverClassName: org.postgresql.Driver
- hikari:
- connectionTimeout: 10000
- maximumPoolSize: 20
- jpa:
- database: POSTGRESQL
- properties:
- hibernate:
- dialect: org.hibernate.dialect.PostgreSQL94Dialect
|