Files
WebServer/config.py
2025-08-25 14:54:37 +08:00

32 lines
1.2 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 配置文件 - 分离硬编码的公司信息数据
COMPANY_INFO = {
"name": "富澤證券(國際)有限公司",
"slogan": "智能科技,创造未来",
"about": "捌壹智能科技有限公司成立于2020年是一家专注于人工智能、大数据分析和数字化转型的高科技企业。我们致力于为客户提供创新的技术解决方案助力企业实现数字化升级。",
"services": [
{
"name": "人工智能解决方案",
"description": "为企业提供定制化AI解决方案包括机器学习、计算机视觉和自然语言处理等。"
},
{
"name": "大数据分析",
"description": "通过先进的数据分析技术,帮助企业挖掘数据价值,优化决策过程。"
},
{
"name": "数字化转型咨询",
"description": "为企业提供全面的数字化转型战略规划和技术实施支持。"
}
],
"contact": {
"address": "香港上環永樂街93-103號協成行上環中心10樓1004室",
"Tel": "+852 35856298",
"Fax": "+852 31862366",
"Email": "Sec.Info@fuzsec.com"
}
}
# 数据存储配置
DATA_DIR = "data"
LOG_DIR = "logs"