131 lines
1.8 KiB
Plaintext
131 lines
1.8 KiB
Plaintext
# ==================== Python ====================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
VENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.pydevproject
|
|
.settings/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
|
|
# ==================== Node.js ====================
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
package-lock.json
|
|
|
|
# Frontend build
|
|
frontend/dist/
|
|
frontend/dist-ssr/
|
|
*.local
|
|
|
|
# ==================== Environment variables ====================
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
!.env.development
|
|
!.env.production
|
|
|
|
# ==================== Logs ====================
|
|
logs/
|
|
*.log
|
|
log/
|
|
|
|
# ==================== Data files ====================
|
|
# 保留目录结构,忽略数据文件
|
|
data/chat/**/*.jsonl
|
|
data/chat/**/*.json
|
|
data/preset/*.json
|
|
data/worldbooks/*.json
|
|
data/apiconfig/*.json
|
|
data/comfyui_workflows/*.json
|
|
data/images/*
|
|
data/temp/*
|
|
outputs/*
|
|
imports/*
|
|
|
|
# ==================== Docker ====================
|
|
.dockerignore
|
|
|
|
# ==================== Temporary files ====================
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
*.backup
|
|
.cache/
|
|
|
|
# ==================== Test coverage ====================
|
|
coverage/
|
|
.nyc_output/
|
|
htmlcov/
|
|
.pytest_cache/
|
|
.tox/
|
|
|
|
# ==================== Misc ====================
|
|
.parcel-cache/
|
|
.next/
|
|
.nuxt/
|
|
.vuepress/dist/
|
|
.serverless/
|
|
.fusebox/
|
|
.dynamodb/
|
|
.tern-port
|
|
|
|
# ==================== Project specific ====================
|
|
# Backend output
|
|
backend/__pycache__/
|
|
backend/api/__pycache__/
|
|
backend/api/routes/__pycache__/
|
|
backend/core/__pycache__/
|
|
backend/services/__pycache__/
|
|
backend/utils/__pycache__/
|
|
|
|
# Claude settings
|
|
.claude/settings.local.json
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*~
|