feat0308 新增compyny-deep技能

This commit is contained in:
dsa343
2026-03-08 12:34:45 +08:00
parent 6147925f7d
commit be3dae3845
5 changed files with 310 additions and 0 deletions

View 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",
}