Files
2026-03-08 12:34:45 +08:00

13 lines
497 B
Python

# -*- 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",
}