mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-27 13:29:15 +07:00
* 🔥 chore(docker-compose): remove Casdoor SSO dependency Casdoor is no longer needed since BetterAuth now supports email/password registration natively. LOBE-3907 * ♻️ refactor(docker-compose): restructure directories - Rename local/ to dev/ for development dependencies - Remove logto/ and zitadel/ from production/ - Restore Casdoor config in production/grafana/ - Simplify dev/ to core services only (postgresql, redis, rustfs, searxng) - Update docker-compose.development.yml to use dev/ - Remove minio-bucket.config.json (switched to rustfs) * ♻️ refactor(docker-compose): simplify dev environment setup - Remove docker-compose.development.yml, use dev/docker-compose.yml directly - Add npm scripts: dev:docker, dev:docker:down, dev:docker:reset - Simplify .env.example.development (remove variable refs, redundant vars) - Update docker-compose/dev/.env.example (consistent passwords) - Add docker-compose/dev/data/ to .gitignore - Update setup docs: use npm scripts, remove image generation section * 🔧 chore: add SSRF_ALLOW_PRIVATE_IP_ADDRESS to dev env example * 🔒 security: auto-generate KEY_VAULTS_SECRET and AUTH_SECRET in setup.sh - Remove hardcoded secrets from docker-compose.yml - Add placeholders to .env.example files - Generate secrets dynamically in setup.sh using openssl rand -base64 32 * 🔧 chore(docker-compose): expose SearXNG port and improve dev scripts - Add SearXNG port mapping (8180:8080) for host access - Use --wait flag in dev:docker to ensure services are healthy - Include db:migrate in dev:docker:reset for one-command reset - Update MinIO reference to RustFS in zh-CN docs - Add SearXNG to service URLs and port conflict docs
130 lines
1.5 KiB
Plaintext
130 lines
1.5 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/
|
|
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
|
|
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
|
|
|
|
# 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 |