fix: remove database from Git LFS and track directly
- Removed Git LFS tracking for nodes.db to fix Docker builds - Docker was getting LFS pointer file instead of actual database - Database is only 20MB, safe to track directly - Updated .gitignore to allow nodes.db tracking - This ensures Docker always gets the actual database file - Includes trigger detection fix (webhook, cron, interval, emailReadImap) Resolves issues where Docker images showed isTrigger: false for trigger nodes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -70,10 +70,12 @@ temp/
|
||||
tmp/
|
||||
|
||||
# Database files
|
||||
data/*.db
|
||||
# Database files - nodes.db is now tracked directly
|
||||
# data/*.db
|
||||
data/*.db-journal
|
||||
data/*.db.bak
|
||||
!data/.gitkeep
|
||||
!data/nodes.db
|
||||
|
||||
# Claude Desktop configs (personal)
|
||||
claude_desktop_config.json
|
||||
|
||||
Reference in New Issue
Block a user