Initial vault setup with PARA structure
- Created CLAUDE.md configuration file - Created WEEKLY_REVIEW.md template - Set up PARA folder structure (Projects, Areas, Resources, Archive) - Created README files for each main folder - Configured .gitignore for vault files - Saved vault configuration to .claude/vault-config.json Generated with Claude Code Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
+37
-22
@@ -3,7 +3,7 @@
|
||||
# ============================================
|
||||
|
||||
# --------------------------------------------
|
||||
# 敏感文件排除
|
||||
# Sensitive Files
|
||||
# --------------------------------------------
|
||||
04_Archive/SENSITIVE-DO-NOT-SYNC/
|
||||
04_Archive/security-sensitive/
|
||||
@@ -17,27 +17,34 @@
|
||||
**/token*.md
|
||||
|
||||
# --------------------------------------------
|
||||
# Obsidian 配置文件
|
||||
# Obsidian Configuration
|
||||
# --------------------------------------------
|
||||
# Workspace 文件(本地布局配置)
|
||||
# Workspace files (local layout configuration)
|
||||
.obsidian/workspace
|
||||
.obsidian/workspace.json
|
||||
.obsidian/workspace-mobile.json
|
||||
|
||||
# 缓存文件
|
||||
# Cache files
|
||||
.obsidian/cache
|
||||
.obsidian/workspace-mobile.json.bak
|
||||
|
||||
# 插件缓存
|
||||
# Plugin data and cache
|
||||
.obsidian/plugins/*/data.json
|
||||
.obsidian/plugins/*/data.json.bak
|
||||
|
||||
# Obsidian Sync
|
||||
.obsidian/sync-config.json
|
||||
|
||||
# 可选:如果不想同步主题和代码片段,取消下面的注释
|
||||
# Optional: Uncomment if you don't want to sync themes and snippets
|
||||
# .obsidian/themes/
|
||||
# .obsidian/snippets/
|
||||
|
||||
# --------------------------------------------
|
||||
# Trash
|
||||
# --------------------------------------------
|
||||
.trash/
|
||||
.Trash/
|
||||
|
||||
# --------------------------------------------
|
||||
# Node.js / JavaScript
|
||||
# --------------------------------------------
|
||||
@@ -48,25 +55,28 @@ yarn-error.log*
|
||||
lerna-debug.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# 依赖锁文件(可选,根据团队协作需求调整)
|
||||
# Dependency lock files (optional, adjust based on team needs)
|
||||
# package-lock.json
|
||||
# yarn.lock
|
||||
# pnpm-lock.yaml
|
||||
|
||||
# Build 输出
|
||||
# Build output
|
||||
dist/
|
||||
build/
|
||||
out/
|
||||
*.tsbuildinfo
|
||||
|
||||
# 环境变量
|
||||
# Environment variables
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
.smart-env/
|
||||
|
||||
# MCP Configuration (may contain secrets)
|
||||
.mcp.json
|
||||
|
||||
# --------------------------------------------
|
||||
# 操作系统文件
|
||||
# Operating System Files
|
||||
# --------------------------------------------
|
||||
# macOS
|
||||
.DS_Store
|
||||
@@ -88,6 +98,7 @@ ehthumbs.db
|
||||
ehthumbs_vista.db
|
||||
*.stackdump
|
||||
[Dd]esktop.ini
|
||||
desktop.ini
|
||||
$RECYCLE.BIN/
|
||||
*.lnk
|
||||
|
||||
@@ -98,7 +109,7 @@ $RECYCLE.BIN/
|
||||
.nfs*
|
||||
|
||||
# --------------------------------------------
|
||||
# 编辑器 / IDE
|
||||
# Editors / IDEs
|
||||
# --------------------------------------------
|
||||
# VSCode
|
||||
.vscode/*
|
||||
@@ -139,57 +150,61 @@ auto-save-list
|
||||
tramp
|
||||
|
||||
# --------------------------------------------
|
||||
# 临时文件和备份
|
||||
# Temporary Files and Backups
|
||||
# --------------------------------------------
|
||||
*.tmp
|
||||
*.temp
|
||||
*.bak
|
||||
*.backup
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.*.swp
|
||||
.*.swo
|
||||
|
||||
# 冲突文件
|
||||
# Conflict files
|
||||
*conflicted*
|
||||
*conflict*
|
||||
|
||||
# --------------------------------------------
|
||||
# 日志文件
|
||||
# Log Files
|
||||
# --------------------------------------------
|
||||
*.log
|
||||
logs/
|
||||
*.log.*
|
||||
|
||||
# --------------------------------------------
|
||||
# 其他常见忽略项
|
||||
# Other Common Ignores
|
||||
# --------------------------------------------
|
||||
# 压缩文件(如果不需要版本控制)
|
||||
# Compressed files (if not needed in version control)
|
||||
# *.zip
|
||||
# *.tar.gz
|
||||
# *.rar
|
||||
|
||||
# 大型媒体文件(根据需要调整)
|
||||
# Large media files (adjust as needed)
|
||||
# *.mp4
|
||||
# *.mov
|
||||
# *.avi
|
||||
|
||||
# 测试覆盖率
|
||||
# Test coverage
|
||||
coverage/
|
||||
*.lcov
|
||||
.nyc_output/
|
||||
|
||||
# 本地数据库
|
||||
# Local databases
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
# --------------------------------------------
|
||||
# 项目特定
|
||||
# Project Specific
|
||||
# --------------------------------------------
|
||||
# Claude 临时文件
|
||||
# Claude temporary files
|
||||
.claude/cache/
|
||||
.claude/temp/
|
||||
|
||||
# 如果有构建脚本生成的文件
|
||||
# Optional: Uncomment if you don't want to track Claude sessions
|
||||
# .claude/sessions/
|
||||
|
||||
# Build script generated files
|
||||
FIRST_RUN_COMPLETED
|
||||
|
||||
Reference in New Issue
Block a user