Files
smartmate/.gitignore
Losita e06284d0b0 Version: 0.7.6.dev.260325
后端:
- ♻️ 将 `taskquery` 模块迁移至 `agent2`,并完成与 `agent2` 业务链路及整体结构的正式接入

前端:
- 🧱 已完成基础框架搭建,并完成了登录、注册、主页等页面并对接了对应接口;但整体功能实现仍在完善中
2026-03-25 00:49:16 +08:00

31 lines
526 B
Plaintext
Raw 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.
# 1. 编译产物 (Build Artifacts)
/bin/
/dist/
*.exe
*.dll
*.so
# 2. 依赖管理 (Dependencies)
# Go 项目通常不提交 vendor除非你有特殊需求
/vendor/
/frontend/node_modules/
# 3. 配置文件与敏感信息 (Security & Configs)
# 绝对不要提交包含数据库密码和 Kafka 地址的配置文件
.env
backend/config.yaml
# 4. 临时文件与日志 (Logs & Temp)
*.log
/tmp/
/frontend/dist/
# 5. IDE 与系统文件
.idea/
.vscode/
.DS_Store # Mac 用户必加
.gocache/
.gomodcache/
.claude/
.omc/