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
| server:
| port: 8080
| address: 0.0.0.0
| spring:
| profiles:
| active: dev
| datasource:
| # url: jdbc:mysql://192.168.2.6:3306/aiflowy?useInformationSchema=true&characterEncoding=utf-8
| url: jdbc:mysql://127.0.0.1:3306/aiflowy_copy?useInformationSchema=true&characterEncoding=utf-8
| username: root
| password: 123456
| servlet:
| multipart:
| max-file-size: 100MB
| max-request-size: 100MB
| web:
| resources:
| static-locations: classpath:/public
| mvc:
| static-path-pattern: /static/**
| redis:
| host: 127.0.0.1
| port: 6379
| password: pwd
| database: 0
| aiflowy:
| storage:
| type: local
| endpoint: http://localhost:9000
| accessKey: minioadmin
| secretKey: minioadmin
| bucketName: mybucket
| local:
| root: ''
| ollama:
| host: http://127.0.0.1:11434
| login:
| excludes: /api/v1/auth/**, /static/**
| gitee:
| appKey: 'xxx'
|
|