2023-07-30 12:43:02 +00:00
|
|
|
import os
|
|
|
|
|
2023-07-24 12:59:43 +00:00
|
|
|
# redis config
|
2023-07-30 12:43:02 +00:00
|
|
|
REDIS_DB_HOST = "127.0.0.1" # your redis host
|
|
|
|
REDIS_DB_PWD = os.getenv("REDIS_DB_PWD", "123456") # your redis password
|
2023-07-24 12:59:43 +00:00
|
|
|
|
|
|
|
# mysql config
|
2023-07-30 12:43:02 +00:00
|
|
|
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"
|
2024-02-21 16:07:40 +00:00
|
|
|
|
|
|
|
# sqlite3 config
|
|
|
|
# RELATION_DB_URL = f"sqlite://data/media_crawler.sqlite"
|