generated from arafkarsh/ms-springboot-324-java-22-jakarta-ee-10
-
Notifications
You must be signed in to change notification settings - Fork 4
/
application-prod.properties
26 lines (24 loc) · 1.03 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
23
24
# =======================================================================
# Ai Server Properties
# =======================================================================
server.port=19090
# ------------------------------------------------------------------------
# Log Details
# ------------------------------------------------------------------------
server.dev.mode=true
logging.level.root=INFO
spring.application.name=ai-service
# =======================================================================
# PostgreSQL DB Properties -
# =======================================================================
db.server=localhost
db.port=5433
db.name=ai_324
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=postgres
spring.datasource.password=2023.Sigma
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
spring.datasource.hikari.connection-test-query=SELECT 1