ArnoChen
commited on
Commit
·
68eaa71
1
Parent(s):
69beec1
add example configuration file for API
Browse files
lightrag/api/config.ini.example
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[neo4j]
|
2 |
+
uri = neo4j+s://xxxxxxxx.databases.neo4j.io
|
3 |
+
username = neo4j
|
4 |
+
password = your-password
|
5 |
+
|
6 |
+
[mongodb]
|
7 |
+
uri = mongodb+srv://name:password@your-cluster-address
|
8 |
+
database = lightrag
|
9 |
+
graph = false
|
10 |
+
|
11 |
+
[redis]
|
12 |
+
uri=redis://localhost:6379/1
|
13 |
+
|
14 |
+
[qdrant]
|
15 |
+
uri = http://localhost:16333
|