Files
NetworkAuth/.gitignore
2026-03-29 00:44:30 +08:00

39 lines
505 B
Plaintext

# 编译后的二进制文件
NetworkAuth
NetworkAuth.exe
# 数据库文件
*.db
*.db-shm
*.db-wal
# 配置文件 (包含敏感信息)
config.json
# 日志文件
logs/
*.log
# 前端工程源码 (独立维护)
frontend/
# 升级/迁移临时缓存目录
更新内容/
# IDE 和编辑器
.vscode/
!.vscode/launch.json
.idea/
# 操作系统
.DS_Store
# 依赖和包管理
vendor/
node_modules/
# 允许提交 Go embed 依赖的静态资源
# 屏蔽构建的前端产物
public/dist/
public/dist/**