feat0308 新增compyny-deep技能
This commit is contained in:
12
company-deep/scripts/db_config.py
Normal file
12
company-deep/scripts/db_config.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""数据库连接配置 -- 供 company-deep Skill 查询脚本使用。"""
|
||||
import os
|
||||
|
||||
DB_CONFIG = {
|
||||
"host": os.environ.get("COMPANY_DEEP_DB_HOST", "222.128.1.157"),
|
||||
"port": int(os.environ.get("COMPANY_DEEP_DB_PORT", "33060")),
|
||||
"user": os.environ.get("COMPANY_DEEP_DB_USER", "sunjiewei"),
|
||||
"password": os.environ.get("COMPANY_DEEP_DB_PASS", "sunjiewei@vf"),
|
||||
"database": os.environ.get("COMPANY_DEEP_DB_NAME", "company_deep"),
|
||||
"charset": "utf8mb4",
|
||||
}
|
||||
Reference in New Issue
Block a user