- Add GPL-3.0 LICENSE file - Update README with current project status (all 3 phases), fix structure - Update PLAN.md Phase 2 API signatures to match actual implementation - Add WebDAV & Sync section to docs/API.md - Update docs/DEVELOPMENT.md with Tauri app structure and setup - Add metadata (description, license, repository) to all Cargo.toml files - Update .gitignore with node_modules, .env, dist, build entries - Remove stale Cargo.lock from .gitignore (apps should track it) - Update example dates from 2025 to 2026 across all docs - Update CLAUDE.md date to 2026-03-30
25 lines
185 B
Plaintext
25 lines
185 B
Plaintext
# Rust
|
|
/target
|
|
**/target/
|
|
|
|
# Node / Tauri frontend
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
|
|
# Environment / secrets
|
|
.env
|
|
.env.*
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.iml
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|