-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication-test.yml
More file actions
55 lines (52 loc) · 1.47 KB
/
application-test.yml
File metadata and controls
55 lines (52 loc) · 1.47 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
spring:
autoconfigure:
exclude:
- org.springframework.ai.vectorstore.qdrant.autoconfigure.QdrantVectorStoreAutoConfiguration
- org.springframework.ai.model.openai.autoconfigure.OpenAiChatAutoConfiguration
- org.springframework.ai.model.openai.autoconfigure.OpenAiEmbeddingAutoConfiguration
main:
allow-bean-definition-overriding: true
datasource:
url: jdbc:mariadb://localhost:3306/escruta_test
username: root
password: 1234
jpa:
hibernate:
ddl-auto: create-drop
properties:
hibernate:
dialect: org.hibernate.dialect.MariaDBDialect
ai:
openai:
base-url: "http://localhost:8080"
api-key: "dummy-api-key"
chat:
options:
model: "dummy-model"
embedding:
options:
model: "dummy-embedding-model"
dimensions: 768
base-url: "http://localhost:8080"
api-key: "dummy-api-key"
vectorstore:
qdrant:
host: ${ESCRUTA_QDRANT_HOST:localhost}
port: ${ESCRUTA_QDRANT_PORT:6334}
collection-name: escruta_test
initialize-schema: false
security:
session:
expiration-interval-seconds: 3600
cors:
allowedOrigins: "http://localhost:5173"
allowedMethods: GET,POST,PUT,DELETE,OPTIONS
allowedHeaders: Authorization,Content-Type
allowCredentials: true
services:
extractor:
base-url: "http://localhost:8000"
api-key: "dummy-api-key"
logging:
level:
org.springframework.security: DEBUG