Files
sunct 3c3bf53ae4 docs(website): 添加简记memo产品原型和UI设计规范文档
- 新增「简记memo」一体化小程序产品原型设计文档
- 新增简记memo完整版UI视觉设计规范和界面细节
- 添加IDEA项目配置文件.gitignore
- 创建404页面HTML文件,包含响应式布局和错误提示
- 添加关于页面HTML文件,展示品牌介绍和团队信息
- 实现AES加解密工具函数,支持请求体加密
- 添加用户协议页面基础框架
2026-07-31 14:12:32 +08:00

48 lines
1.1 KiB
YAML
Raw Permalink 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.
# 开发环境配置
server:
port: 8888
mode: debug
mysql:
host: 127.0.0.1
port: 3306
dbname: simple_memo_dev
username: sunct
password: sun900120
redis:
host: 127.0.0.1
port: 6379
password: ""
db: 0
jwt:
key: "dev-jwt-simple-memo-2026"
expire: 7200 # 2小时过期
aes:
key: "12345678901234567890123456789012" # 32位
iv: "1234567890123456" # 16位
log:
path: "./logs/dev.log"
wechat:
app_id: "wx6a3215bd78a6ff13"
app_secret: "00d66660efe4da31057dd401b1e07a6e"
web_redirect_uri: "https://dev.your-domain.com/api/web/auth/callback"
email:
smtp_host: "smtp.qiye.aliyun.com"
smtp_port: 465
smtp_user: "memo_noreply@miaoall.cn"
smtp_password: "wwpnme4odnnj"
from: "简记memo <memo_noreply@miaoall.cn>"
ai:
provider: "spark" # 讯飞星火
api_password: "OjAdJyOqCVmVYUFyaQJq:GQZNWpiVJTytmiSWuaTq" # 讯飞 API Password(在控制台应用详情获取)
base_url: "https://spark-api-open.xf-yun.com/v1"
model: "lite" # spark-lite(免费,QPS=2
max_tokens: 1024
timeout: 30