feat: 新增签到墙、摇一摇等功能及开发环境配置
新功能: - 签到墙页面 (CheckinWallView) 及后端接口 - 摇一摇互动页面 (ShakeView) 及服务 - 头像服务 (avatar.service) - 微信公众号静默授权登录增强 开发环境: - 新增 dev-tunnel skill 用于本地调试 - docker-compose.dev.yml 开发环境配置 - 客户端 .env.development 配置文件 其他改进: - VoteView 投票页面功能增强 - AdminControl 管理控制台更新 - 连接状态管理优化 - 新增马蹄声音效 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
38
.claude/skills/dev-tunnel/Caddyfile.debug
Normal file
38
.claude/skills/dev-tunnel/Caddyfile.debug
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
email let5sne@gmail.com
|
||||
}
|
||||
|
||||
2026.cptp.let5see.xyz {
|
||||
# WeChat verification file
|
||||
handle /A6e75lM1ge.txt {
|
||||
respond "3a5d2d7f410fbcbc32e3c222b2cf28bf"
|
||||
}
|
||||
|
||||
# Screen client → local dev server via tunnel
|
||||
handle /screen* {
|
||||
reverse_proxy localhost:5174
|
||||
}
|
||||
|
||||
# API proxy → local backend via tunnel
|
||||
handle /api/* {
|
||||
header Cache-Control "no-store, no-cache, must-revalidate"
|
||||
reverse_proxy localhost:3001
|
||||
}
|
||||
|
||||
# WebSocket proxy → local backend via tunnel
|
||||
handle /socket.io/* {
|
||||
reverse_proxy localhost:3001
|
||||
}
|
||||
|
||||
# Avatars proxy → local backend via tunnel
|
||||
handle /avatars/* {
|
||||
reverse_proxy localhost:3001
|
||||
}
|
||||
|
||||
# Mobile client → local dev server via tunnel
|
||||
handle {
|
||||
reverse_proxy localhost:5173
|
||||
}
|
||||
|
||||
encode gzip
|
||||
}
|
||||
Reference in New Issue
Block a user