mirror of
https://github.com/HKUDS/LightRAG.git
synced 2025-07-22 08:21:27 +00:00
40 lines
831 B
Plaintext
40 lines
831 B
Plaintext
[neo4j]
|
|
uri = neo4j+s://xxxxxxxx.databases.neo4j.io
|
|
username = neo4j
|
|
password = your-password
|
|
|
|
[mongodb]
|
|
uri = mongodb+srv://name:password@your-cluster-address
|
|
database = lightrag
|
|
|
|
[redis]
|
|
uri=redis://localhost:6379/1
|
|
|
|
[qdrant]
|
|
uri = http://localhost:16333
|
|
|
|
[oracle]
|
|
dsn = localhost:1521/XEPDB1
|
|
user = your_username
|
|
password = your_password
|
|
config_dir = /path/to/oracle/config
|
|
wallet_location = /path/to/wallet # 可选
|
|
wallet_password = your_wallet_password # 可选
|
|
workspace = default # 可选,默认为default
|
|
|
|
[tidb]
|
|
host = localhost
|
|
port = 4000
|
|
user = your_username
|
|
password = your_password
|
|
database = your_database
|
|
workspace = default # 可选,默认为default
|
|
|
|
[postgres]
|
|
host = localhost
|
|
port = 5432
|
|
user = your_username
|
|
password = your_password
|
|
database = your_database
|
|
workspace = default # 可选,默认为default
|