docs(config): 更新.gitignore
This commit is contained in:
+82
-26
@@ -1,22 +1,44 @@
|
|||||||
# Dependencies
|
# ==============================================
|
||||||
|
# Dependencies (依赖目录)
|
||||||
|
# ==============================================
|
||||||
node_modules/
|
node_modules/
|
||||||
/backed/temp
|
**/node_modules/
|
||||||
|
|
||||||
# Build outputs
|
# ==============================================
|
||||||
|
# Build outputs (构建输出)
|
||||||
|
# ==============================================
|
||||||
dist/
|
dist/
|
||||||
build/
|
build/
|
||||||
|
.vite/
|
||||||
|
.next/
|
||||||
|
.nuxt/
|
||||||
|
|
||||||
# Environment files
|
# ==============================================
|
||||||
|
# Environment files (环境配置文件)
|
||||||
|
# ==============================================
|
||||||
.env
|
.env
|
||||||
.env.local
|
.env.local
|
||||||
.env.development.local
|
.env.*.local
|
||||||
.env.test.local
|
!.env.example
|
||||||
.env.production.local
|
|
||||||
.gitignore
|
|
||||||
.vercelignore
|
|
||||||
|
|
||||||
# Logs
|
# ==============================================
|
||||||
logs
|
# IDE & Editor (编辑器配置)
|
||||||
|
# ==============================================
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
.project
|
||||||
|
.classpath
|
||||||
|
.settings/
|
||||||
|
|
||||||
|
# ==============================================
|
||||||
|
# Logs (日志文件)
|
||||||
|
# ==============================================
|
||||||
|
logs/
|
||||||
*.log
|
*.log
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
@@ -24,34 +46,68 @@ yarn-error.log*
|
|||||||
pnpm-debug.log*
|
pnpm-debug.log*
|
||||||
lerna-debug.log*
|
lerna-debug.log*
|
||||||
|
|
||||||
# Editor directories and files
|
# ==============================================
|
||||||
.vscode/
|
# Database files (数据库文件)
|
||||||
.idea/
|
# ==============================================
|
||||||
.trae/
|
|
||||||
.vercel/
|
|
||||||
*.swp
|
|
||||||
*.swo
|
|
||||||
*~
|
|
||||||
.DS_Store
|
|
||||||
|
|
||||||
# Database files
|
|
||||||
*.db
|
*.db
|
||||||
*.sqlite
|
*.sqlite
|
||||||
|
*.sqlite3
|
||||||
|
|
||||||
# Backup files (generated by maintenance scripts)
|
# ==============================================
|
||||||
|
# Backup files (备份文件)
|
||||||
|
# ==============================================
|
||||||
backend/backups/
|
backend/backups/
|
||||||
*.backup.json
|
*.backup.json
|
||||||
|
*.bak
|
||||||
|
|
||||||
# Uploads directory (user-uploaded files)
|
# ==============================================
|
||||||
|
# Uploads directory (用户上传文件)
|
||||||
|
# ==============================================
|
||||||
backend/uploads/*
|
backend/uploads/*
|
||||||
!backend/uploads/.gitkeep
|
!backend/uploads/.gitkeep
|
||||||
|
|
||||||
# Temporary files
|
# ==============================================
|
||||||
|
# Temporary files (临时文件)
|
||||||
|
# ==============================================
|
||||||
backend/temp/*
|
backend/temp/*
|
||||||
!backend/temp/.gitkeep
|
!backend/temp/.gitkeep
|
||||||
*.tmp
|
*.tmp
|
||||||
*.temp
|
*.temp
|
||||||
|
*.cache
|
||||||
|
|
||||||
#数据文件
|
# ==============================================
|
||||||
|
# Data files (数据文件)
|
||||||
|
# ==============================================
|
||||||
*.xlsx
|
*.xlsx
|
||||||
|
*.xls
|
||||||
*.csv
|
*.csv
|
||||||
|
|
||||||
|
# ==============================================
|
||||||
|
# Test coverage (测试覆盖率)
|
||||||
|
# ==============================================
|
||||||
|
coverage/
|
||||||
|
.nyc_output/
|
||||||
|
|
||||||
|
# ==============================================
|
||||||
|
# Process & Runtime (进程和运行时文件)
|
||||||
|
# ==============================================
|
||||||
|
.pid
|
||||||
|
*.pid
|
||||||
|
frontend/.frontend-pid
|
||||||
|
frontend/.frontend-port
|
||||||
|
|
||||||
|
# ==============================================
|
||||||
|
# User config files (用户配置文件)
|
||||||
|
# ==============================================
|
||||||
|
backend/backgroundSettings.json
|
||||||
|
backend/fileIndex.json
|
||||||
|
backend/config/auto-backup-settings.json
|
||||||
|
backend/config/remote-backup-configs.json
|
||||||
|
|
||||||
|
# ==============================================
|
||||||
|
# Misc (其他)
|
||||||
|
# ==============================================
|
||||||
|
.trae/
|
||||||
|
.vercel/
|
||||||
|
.gitignore
|
||||||
|
.vercelignore
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"opacity": 0.8,
|
||||||
|
"blur": 5,
|
||||||
|
"value": "/images/bg.jpg",
|
||||||
|
"type": "image"
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"enabled": true,
|
||||||
|
"cronExpression": "0 19 * * *",
|
||||||
|
"description": "自动备份",
|
||||||
|
"backupType": "full",
|
||||||
|
"includeFiles": true,
|
||||||
|
"compress": true,
|
||||||
|
"maxCount": 30,
|
||||||
|
"maxAgeDays": 90
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"targets": [],
|
||||||
|
"globalSettings": {
|
||||||
|
"enabled": false,
|
||||||
|
"uploadAfterBackup": false,
|
||||||
|
"deleteLocalAfterUpload": false,
|
||||||
|
"retryCount": 3,
|
||||||
|
"retryDelay": 5000,
|
||||||
|
"timeout": 300000
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user