mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
* add device gateway * improve persona memory * support auto renaming * support memory * fix memory captureAt * add more db testing * add more db testing * add agent tracing tool * add agent tracing tool * fix lint * fix lint * update skills * Potential fix for code scanning alert no. 178: Workflow does not contain permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --------- Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
137 lines
1.7 KiB
Plaintext
137 lines
1.7 KiB
Plaintext
# Gitignore for LobeHub
|
|
################################################################
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Linux/Ubuntu system files
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
.fuse_hidden*
|
|
.directory
|
|
.Trash-*
|
|
.nfs*
|
|
.gvfs-fuse-daemon-*
|
|
|
|
# IDE and editors
|
|
.idea/
|
|
*.sublime-*
|
|
.history/
|
|
.windsurfrules
|
|
*.code-workspace
|
|
.vscode/sessions.json
|
|
prd
|
|
# Temporary files
|
|
.temp/
|
|
temp/
|
|
tmp/
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
*.cache
|
|
.cache/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env*.local
|
|
.env.development
|
|
venv/
|
|
.venv/
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
*.lock
|
|
package-lock.json
|
|
bun.lockb
|
|
.pnpm-store/
|
|
|
|
# Build outputs
|
|
dist/
|
|
public/spa/
|
|
es/
|
|
lib/
|
|
.next/
|
|
logs/
|
|
test-output/
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# Framework specific
|
|
# Umi
|
|
.umi/
|
|
.umi-production/
|
|
.umi-test/
|
|
.dumi/tmp*/
|
|
|
|
# Vercel
|
|
.vercel/
|
|
|
|
# Testing and CI
|
|
coverage/
|
|
.coverage/
|
|
.nyc_output/
|
|
.eslintcache
|
|
.stylelintcache
|
|
|
|
# Service Worker
|
|
# Serwist
|
|
public/sw*
|
|
public/swe-worker*
|
|
|
|
# Generated files
|
|
src/app/spa/[variants]/[[...path]]/spaHtmlTemplates.ts
|
|
public/*.js
|
|
public/sitemap.xml
|
|
public/sitemap-index.xml
|
|
sitemap*.xml
|
|
robots.txt
|
|
|
|
# Git hooks
|
|
.husky/prepare-commit-msg
|
|
|
|
# Documents and media
|
|
*.pdf
|
|
|
|
# Cloud service keys
|
|
vertex-ai-key.json
|
|
|
|
# Agent tracing snapshots
|
|
.agent-tracing/
|
|
|
|
# AI coding tools
|
|
.local/
|
|
.claude/
|
|
.mcp.json
|
|
CLAUDE.local.md
|
|
.agent/
|
|
|
|
# MCP tools
|
|
.serena/**
|
|
|
|
# Docker development data
|
|
docker-compose/dev/data/
|
|
|
|
# Migration scripts data
|
|
scripts/clerk-to-betterauth/test/*.csv
|
|
scripts/clerk-to-betterauth/test/*.json
|
|
scripts/clerk-to-betterauth/prod/*.csv
|
|
scripts/clerk-to-betterauth/prod/*.json
|
|
|
|
# Misc
|
|
./packages/lobe-ui
|
|
*.ppt*
|
|
*.doc*
|
|
*.xls*
|
|
e2e/reports
|
|
out
|
|
i18n-unused-keys-report.json
|
|
.vitest-reports
|
|
|
|
pnpm-lock.yaml
|
|
.turbo
|
|
spaHtmlTemplates.ts |