feat: 初始化BLS心跳接收端项目

- 添加基础项目结构,包括.gitignore、vite配置和package.json
- 实现Kafka消费者模块框架
- 添加心跳处理器模块框架
- 实现数据库管理模块框架
- 添加OpenSpec规范文档
- 更新README文档说明项目功能和技术栈
This commit is contained in:
2026-01-08 09:16:53 +08:00
parent 24654c4b90
commit adc3bfd87d
19 changed files with 5549 additions and 1 deletions

38
.gitignore vendored Normal file
View File

@@ -0,0 +1,38 @@
# 依赖目录
node_modules/
# 构建输出目录
dist/
build/
# 环境配置文件
.env
.env.local
.env.*.local
config.js
# 日志文件
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# IDE配置文件
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# 测试覆盖率报告
coverage/
.nyc_output/
# 临时文件
*.tmp
*.temp
.cache/