2023-07-30 12:43:02 +00:00
|
|
|
import os
|
2023-07-24 12:59:43 +00:00
|
|
|
|
|
|
|
# mysql config
|
2024-05-30 07:35:05 +00:00
|
|
|
RELATION_DB_PWD = os.getenv("RELATION_DB_PWD", "123456")
|
|
|
|
RELATION_DB_USER = os.getenv("RELATION_DB_USER", "root")
|
|
|
|
RELATION_DB_HOST = os.getenv("RELATION_DB_HOST", "localhost")
|
|
|
|
RELATION_DB_PORT = os.getenv("RELATION_DB_PORT", "3306")
|
|
|
|
RELATION_DB_NAME = os.getenv("RELATION_DB_NAME", "media_crawler")
|
|
|
|
|
|
|
|
RELATION_DB_URL = f"mysql://{RELATION_DB_USER}:{RELATION_DB_PWD}@{RELATION_DB_HOST}:{RELATION_DB_PORT}/{RELATION_DB_NAME}"
|
2024-02-21 16:07:40 +00:00
|
|
|
|
2024-06-02 03:16:18 +00:00
|
|
|
# redis config
|
|
|
|
REDIS_DB_HOST = "127.0.0.1" # your redis host
|
|
|
|
REDIS_DB_PWD = os.getenv("REDIS_DB_PWD", "123456") # your redis password
|
|
|
|
REDIS_DB_PORT = os.getenv("REDIS_DB_PORT", 6379) # your redis port
|
|
|
|
REDIS_DB_NUM = os.getenv("REDIS_DB_NUM", 0) # your redis db num
|
2024-06-02 11:57:13 +00:00
|
|
|
|
|
|
|
# cache type
|
|
|
|
CACHE_TYPE_REDIS = "redis"
|
|
|
|
CACHE_TYPE_MEMORY = "memory"
|