Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
477 changes: 477 additions & 0 deletions docs/dev/plans/EPIC-4-3-sync-config-yaml.md

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions sync-service/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# User-specific configuration
# Contains user paths and settings - do not commit
config.yaml

# Keep example template tracked in git
!config.example.yaml

# Build artifacts
/target/

# Backup files
*~
*.swp
*.swo

# IDE files
.idea/
.vscode/
*.iml

# Log files
logs/
*.log

# Local environment variables
.env
.env.local

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Code coverage reports like lcov.info are generated artifacts and should not be committed to version control. It's a good practice to add a section for them in .gitignore to keep the repository clean.

.env.local

# Coverage reports
lcov.info
*.lcov
/target/llvm-cov/

1 change: 1 addition & 0 deletions sync-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,4 @@ chrono = { version = "0.4", features = ["serde"] }

# Temporary files (atomic writes)
tempfile = "3.0"
shellexpand = "3.1.1"
Loading