-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.toml
More file actions
52 lines (43 loc) · 802 Bytes
/
Copy pathconfig.example.toml
File metadata and controls
52 lines (43 loc) · 802 Bytes
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
first_superuser_email = "admin@example.com"
first_superuser_username = "admin"
first_superuser_password = "admin@123456"
[postgres]
host = "127.0.0.1"
port = 5432
username = "postgres"
password = "postgres"
database = "postgres"
pool_size = 30
[redis]
host = "127.0.0.1"
port = 6379
db = 0
password = ""
[mongo]
host = "127.0.0.1"
port = 27017
collection = "demo_fastapi"
database = "demo_fastapi"
[mysql]
host = "127.0.0.1"
port = 3306
username = "root"
password = "wawawa"
database = "demo_fastapi"
[rabbitmq]
username = "guest"
password = "guest"
host = "127.0.0.1"
port = 5672
exchange = "fastapi"
virtual_host = "fastapi"
connection_name = "[demo-fastapi]"
[llm.dashscope]
[[products]]
name = "Hammer"
id = 738594937
color = "red"
[[products]]
name = "Nail"
id = 284758393
color = "gray"