feat: 增加sqlite配置示例

This commit is contained in:
ccgo 2024-02-22 00:07:40 +08:00
parent 03ca445221
commit 4f5f83d3fa
1 changed files with 3 additions and 0 deletions

View File

@ -7,3 +7,6 @@ REDIS_DB_PWD = os.getenv("REDIS_DB_PWD", "123456") # your redis password
# mysql config
RELATION_DB_PWD = os.getenv("RELATION_DB_PWD", "123456") # your relation db password
RELATION_DB_URL = f"mysql://root:{RELATION_DB_PWD}@localhost:3306/media_crawler"
# sqlite3 config
# RELATION_DB_URL = f"sqlite://data/media_crawler.sqlite"