Added structured changelog documentation: - Created releases/memory/ directory to track changes between tags - Each version has a .md file (v1.2.1.md, etc.) documenting commits and impact - Updated CLAUDE.md with release notes reference - Updated README.md with releases section - Updated .gitignore to track releases/memory/ while ignoring other release artifacts This helps reviewers and developers understand changes between versions before making new updates to the codebase. Initial entry: v1.2.1.md documenting the pricelist refactor and configurator component substitution fix. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
82 lines
1.0 KiB
Plaintext
82 lines
1.0 KiB
Plaintext
# QuoteForge
|
|
config.yaml
|
|
.env
|
|
.env.*
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
*.crt
|
|
id_rsa
|
|
id_rsa.*
|
|
secrets.yaml
|
|
secrets.yml
|
|
|
|
# Local SQLite database (contains encrypted credentials)
|
|
/data/*.db
|
|
/data/*.db-journal
|
|
/data/*.db-shm
|
|
/data/*.db-wal
|
|
|
|
# Binaries
|
|
/server
|
|
/importer
|
|
/cron
|
|
/bin/
|
|
|
|
# Local Go build cache used in sandboxed runs
|
|
.gocache/
|
|
|
|
# Local tooling state
|
|
.claude/
|
|
|
|
# Editor settings
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Temp and logs
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
|
|
# Go test/build artifacts
|
|
*.out
|
|
*.test
|
|
coverage/
|
|
|
|
# ---> macOS
|
|
# General
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Icon must end with two \r
|
|
Icon
|
|
|
|
# Thumbnails
|
|
._*
|
|
|
|
# Files that might appear in the root of a volume
|
|
.DocumentRevisions-V100
|
|
.fseventsd
|
|
.Spotlight-V100
|
|
.TemporaryItems
|
|
.Trashes
|
|
.VolumeIcon.icns
|
|
.com.apple.timemachine.donotpresent
|
|
|
|
# Directories potentially created on remote AFP share
|
|
.AppleDB
|
|
.AppleDesktop
|
|
Network Trash Folder
|
|
Temporary Items
|
|
.apdisk
|
|
|
|
# Release artifacts, but DO track releases/memory/ for changelog
|
|
releases/
|
|
!releases/
|
|
!releases/memory/
|
|
!releases/memory/**
|