feat: 增加sqlite配置示例
This commit is contained in:
parent
03ca445221
commit
4f5f83d3fa
|
@ -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"
|
Loading…
Reference in New Issue