blob: b4b4d81a7f7b516b6e8ba675dc3f056f8e49efd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
server:
port: 8083
servlet:
context-path: /api/usecaseui-intent-analysis/v1
ssl:
protocol: TLS
key-store: classpath:keystore/uuiIntentAnalysis.jks
key-store-password: Aa123456
key-store-type: JKS
spring:
datasource:
url: jdbc:postgresql://${POSTGRES_IP:127.0.0.1}:${POSTGRES_PORT:5432}/${POSTGRES_DB_NAME:intentdb}
username: ${POSTGRES_USERNAME}
password: ${POSTGRES_PASSWORD}
driver-class-name: org.postgresql.Driver
sql:
init:
schema-locations: classpath*:intent-analysis-init.sql
data-locations: classpath*:intent-analysis-data.sql
mode: always
mybatis:
configuration:
database-id: PostgreSQL
mapper-locations: classpath*:mybatis/sql/*.xml
rest:
policy:
username: policyadmin
password: zb!XztG34
so:
username: InfraPortalClient
password: password1$
aai:
username: AAI
password: AAI
|