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_sched 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