mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 06:21:23 +00:00
* Fix syncing issues with new connections and accounts.. - Keep SimpleFin institution metadata strictly per account (`simplefin_accounts.org_data`). - Relax `simplefin_items` institution constraints to allow creating items before org data exists. - Remove code that copied the first account’s `org` onto `simplefin_items`. * Improve Simplefin Sync • SimpleFin: family “Sync” includes SimpleFin items; importer does unbounded discovery (with pending=1 fallback) before windowed fetch, for both regular and first syncs. • Stop populating item‑level institution fields; keep institution metadata per account. • Relax NOT NULL on item institution fields. • Post‑sync dashboard broadcasts are now guarded (UI cannot fail the job). • Show a friendly “daily refresh limit” banner on the SimpleFin card when the latest sync is rate‑limited. • Add bin/rails sure:simplefin:debug[ITEM_ID] to print latest sync, snapshot account count, simplefin_accounts count, and unlinked list. * Fixed double‑quoted strings, spacing around array brackets and commas * chore: ignore local .junie files * - Broadcast error logs now include full backtraces - SimpleFin discovery logic deduplicated fixed - app/models/simplefin_item/importer.rb --Added a concise docstring for perform_account_discovery describing purpose, steps, and side‑effects. --Added a docstring for fetch_accounts_data describing params and return value.
112 lines
1.8 KiB
Plaintext
112 lines
1.8 KiB
Plaintext
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
|
#
|
|
# If you find yourself ignoring temporary files generated by your text editor
|
|
# or operating system, you probably want to add a global ignore instead:
|
|
# git config --global core.excludesfile '~/.gitignore_global'
|
|
|
|
# Ignore bundler config.
|
|
/.bundle
|
|
/vendor/bundle
|
|
|
|
# Ignore all environment files (except templates).
|
|
/.env*
|
|
!/.env*.erb
|
|
!.env*.example
|
|
|
|
# Ignore all logfiles and tempfiles.
|
|
/log/*
|
|
/tmp/*
|
|
!/log/.keep
|
|
!/tmp/.keep
|
|
|
|
# Ignore pidfiles, but keep the directory.
|
|
/tmp/pids/*
|
|
!/tmp/pids/
|
|
!/tmp/pids/.keep
|
|
|
|
# Ignore storage (uploaded files in development and any SQLite databases).
|
|
/storage/*
|
|
!/storage/.keep
|
|
/tmp/storage/*
|
|
!/tmp/storage/
|
|
!/tmp/storage/.keep
|
|
|
|
/public/assets
|
|
|
|
# Ignore master key for decrypting credentials and more.
|
|
/config/master.key
|
|
|
|
/app/assets/builds/*
|
|
!/app/assets/builds/.keep
|
|
|
|
# Ignore Jetbrains IDEs
|
|
.idea
|
|
|
|
# Ignore VS Code
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/*.code-snippets
|
|
|
|
# Ignore macOS specific files
|
|
*/.DS_Store
|
|
.DS_Store
|
|
|
|
# Ignore .devcontainer files
|
|
compose-dev.yaml
|
|
|
|
# Ignore asdf ruby version file
|
|
.tool-versions
|
|
|
|
# Ignore GCP keyfile
|
|
gcp-storage-keyfile.json
|
|
|
|
coverage
|
|
.cursorrules
|
|
.cursor/rules/structure.mdc
|
|
.cursor/rules/agent.mdc
|
|
|
|
# Ignore node related files
|
|
node_modules
|
|
|
|
compose.yml
|
|
|
|
plaid_test_accounts/
|
|
|
|
# Added by Claude Task Master
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
dev-debug.log
|
|
# Dependency directories
|
|
node_modules/
|
|
# Environment variables
|
|
.env
|
|
# Editor directories and files
|
|
.vscode
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
*.roo*
|
|
# OS specific
|
|
# Task files
|
|
.taskmaster/
|
|
tasks.json
|
|
.taskmaster/tasks/
|
|
.taskmaster/reports/
|
|
.taskmaster/state.json
|
|
*.mcp.json
|
|
scripts/
|
|
.cursor/mcp.json
|
|
.taskmasterconfig
|
|
.windsurfrules
|
|
.cursor/rules/dev_workflow.mdc
|
|
.cursor/rules/taskmaster.mdc
|
|
|
|
# Local Junie helpers
|
|
.junie/
|