Files
NetworkAuth/.gitignore
2026-05-25 02:16:09 +08:00

48 lines
724 B
Plaintext

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