- Add cron service to docker-compose with backup (3 AM) and export (4 AM) schedules - Remove redundant content/articles/ and content/curriculum/ (now in Outline, exported to content/wiki/) - Fix env var mismatch: support both OUTLINE_API_KEY and OUTLINE_API_TOKEN - Drop updatedAt from export frontmatter to reduce noisy commits - Add backups/ to gitignore
34 lines
411 B
Text
34 lines
411 B
Text
# Outline secrets
|
|
outline.env
|
|
|
|
# Node dependencies
|
|
node_modules
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Misc
|
|
.DS_Store
|
|
.fleet
|
|
.idea
|
|
|
|
# Obsidian vault (user-specific; never commit workspace state)
|
|
.obsidian/
|
|
conflict-files-obsidian-git.md
|
|
.trash/
|
|
|
|
# Local env files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Root markdown files (local only)
|
|
/*.md
|
|
|
|
# Project docs (local only)
|
|
/docs
|
|
/migration
|
|
|
|
# Database backups (large binary files)
|
|
/backups
|