generated from arafkarsh/ms-springboot-324-java-22-jakarta-ee-10
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapplication-prod.properties
24 lines (22 loc) · 1.05 KB
/
application-prod.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# =======================================================================
# Microservice Server Properties
# =======================================================================
server.port=9334
# ------------------------------------------------------------------------
# Log Details
# ------------------------------------------------------------------------
logging.level.root=INFO
# =======================================================================
# PostgreSQL DB Properties -
# =======================================================================
db.server=localhost
db.port=5433
db.name=ms_vanilla_334
db.schema=ms_schema
db.vendor=PostgreSQL
spring.datasource.url=jdbc:postgresql://${db.server}:${db.port}/${db.name}
spring.datasource.driverClassName=org.postgresql.ds.PGSimpleDataSource
spring.datasource.username=msadm
spring.datasource.password=ENC(In0ZYcoLjwe2OzzaWZ07BMoFHL8yvo4KQ/3ABAbzSKJuUVEu5hYycNGWB66Xswju)
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
spring.datasource.hikari.connection-test-query=SELECT 1