feat: 完成Nacos配置优化和WebSocket集成
主要更新: 1. 统一所有微服务端口配置(19000-19008) 2. 为所有服务创建本地/测试/生产三套环境配置 3. 配置Nacos认证密码(本地:Peanut2817*#, 测试/生产:EmotionMuseum2025) 4. 优化网关路由配置,支持负载均衡和WebSocket 5. 新增emotion-websocket模块,支持实时聊天 6. 前端集成WebSocket,替代HTTP轮询 7. 添加配置验证和管理工具脚本 技术特性: - 完整的环境隔离和服务发现 - WebSocket实时通信支持 - 负载均衡路由配置 - 跨域和安全配置 - 自动重连和心跳检测
This commit is contained in:
@@ -0,0 +1,115 @@
|
||||
# 依赖
|
||||
node_modules/
|
||||
.pnp
|
||||
.pnp.js
|
||||
|
||||
# 生产构建
|
||||
/dist
|
||||
/build
|
||||
|
||||
# 本地环境变量文件
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# 日志
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# 运行时数据
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# 覆盖率报告
|
||||
coverage
|
||||
*.lcov
|
||||
.nyc_output
|
||||
|
||||
# ESLint缓存
|
||||
.eslintcache
|
||||
|
||||
# 可选的npm缓存目录
|
||||
.npm
|
||||
|
||||
# 可选的eslint缓存
|
||||
.eslintcache
|
||||
|
||||
# 微束缓存
|
||||
.rpt2_cache/
|
||||
.rts2_cache_cjs/
|
||||
.rts2_cache_es/
|
||||
.rts2_cache_umd/
|
||||
|
||||
# 可选的REPL历史
|
||||
.node_repl_history
|
||||
|
||||
# 输出的npm包
|
||||
*.tgz
|
||||
|
||||
# Yarn完整性文件
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv环境变量文件
|
||||
.env
|
||||
.env.test
|
||||
|
||||
# parcel-bundler缓存
|
||||
.cache
|
||||
.parcel-cache
|
||||
|
||||
# Next.js构建输出
|
||||
.next
|
||||
|
||||
# Nuxt.js构建/生成输出
|
||||
.nuxt
|
||||
dist
|
||||
|
||||
# Gatsby文件
|
||||
.cache/
|
||||
public
|
||||
|
||||
# Vuepress构建输出
|
||||
.vuepress/dist
|
||||
|
||||
# Serverless目录
|
||||
.serverless/
|
||||
|
||||
# FuseBox缓存
|
||||
.fusebox/
|
||||
|
||||
# DynamoDB本地文件
|
||||
.dynamodb/
|
||||
|
||||
# TernJS端口文件
|
||||
.tern-port
|
||||
|
||||
# IDE和编辑器
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS生成的文件
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# 临时文件
|
||||
tmp/
|
||||
temp/
|
||||
|
||||
# 测试输出
|
||||
test-results/
|
||||
playwright-report/
|
||||
playwright/.cache/
|
||||
Reference in New Issue
Block a user