fix: 修复数据库密码中有特殊符号导致db连接不上的bug

This commit is contained in:
Relakkes
2024-12-26 18:13:13 +08:00
parent ea5223c708
commit 29ab6feded
2 changed files with 6 additions and 24 deletions

View File

@@ -15,10 +15,9 @@ import os
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_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}"
# redis config
REDIS_DB_HOST = "127.0.0.1" # your redis host