修改前端 项目改名

This commit is contained in:
2025-09-19 22:03:59 +08:00
parent 98c6371c4e
commit 7786e5f507
31 changed files with 950 additions and 449 deletions

View File

@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
"""
InfoGenie 后端主应用入口
Created by: 神奇万事通
Created by: 万象口袋
Date: 2025-09-02
"""
@@ -50,7 +50,7 @@ def create_app():
def index():
"""API根路径"""
return jsonify({
'message': '神奇万事通 API 服务运行中 ✨',
'message': '万象口袋 API 服务运行中 ✨',
'version': '1.0.0',
'timestamp': datetime.now().isoformat(),
'endpoints': {

View File

@@ -1,7 +1,7 @@
#!/bin/bash
# InfoGenie 后端 Docker 镜像构建脚本
# Created by: 神奇万事通
# Created by: 万象口袋
# Date: 2025-09-16
set -e

View File

@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
"""
InfoGenie 配置文件
Created by: 神奇万事通
Created by: 万象口袋
Date: 2025-09-02
"""
@@ -38,7 +38,7 @@ class Config:
MAIL_USE_TLS = False
MAIL_USERNAME = os.environ.get('MAIL_USERNAME') or 'your-email@qq.com'
MAIL_PASSWORD = os.environ.get('MAIL_PASSWORD') or 'your-app-password'
MAIL_DEFAULT_SENDER = ('InfoGenie 神奇万事通', os.environ.get('MAIL_USERNAME') or 'your-email@qq.com')
MAIL_DEFAULT_SENDER = ('InfoGenie 万象口袋', os.environ.get('MAIL_USERNAME') or 'your-email@qq.com')
# API 配置
API_RATE_LIMIT = '100 per hour' # API调用频率限制
@@ -52,9 +52,9 @@ class Config:
# 应用信息
APP_INFO = {
'name': '神奇万事通',
'name': '万象口袋',
'description': '🎨 一个多功能的聚合软件应用 💬',
'author': '👨‍💻 by-神奇万事通',
'author': '👨‍💻 by-万象口袋',
'version': '1.0.0',
'icp': '📄 蜀ICP备2025151694号'
}

View File

@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
"""
AI模型应用服务模块
Created by: 神奇万事通
Created by: 万象口袋
Date: 2025-01-15
"""

View File

@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
"""
用户认证模块
Created by: 神奇万事通
Created by: 万象口袋
Date: 2025-09-02
"""

View File

@@ -72,7 +72,7 @@ def send_verification_email(email, verification_type='register'):
<body>
<div style="font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto; padding: 20px;">
<div style="text-align: center; margin-bottom: 30px;">
<h1 style="color: #66bb6a; margin: 0;">InfoGenie 神奇万事通</h1>
<h1 style="color: #66bb6a; margin: 0;">InfoGenie 万象口袋</h1>
<p style="color: #666; font-size: 14px; margin: 5px 0;">欢迎注册InfoGenie</p>
</div>
@@ -101,7 +101,7 @@ def send_verification_email(email, verification_type='register'):
<body>
<div style="font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto; padding: 20px;">
<div style="text-align: center; margin-bottom: 30px;">
<h1 style="color: #66bb6a; margin: 0;">InfoGenie 神奇万事通</h1>
<h1 style="color: #66bb6a; margin: 0;">InfoGenie 万象口袋</h1>
<p style="color: #666; font-size: 14px; margin: 5px 0;">安全登录验证</p>
</div>

View File

@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
"""
用户管理模块
Created by: 神奇万事通
Created by: 万象口袋
Date: 2025-09-02
"""