Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions providers/lunchflow.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ LUNCHFLOW_INCLUDE_PENDING=1

When enabled, transactions marked as pending by Lunch Flow will be imported and displayed with a "Pending" badge in the UI.

When a pending transaction posts, Sure automatically refreshes the stored snapshot so the entry transitions from pending to posted. The "Pending" badge is removed and the transaction reflects the final posted details.

### Debug mode

For troubleshooting, you can enable debug logging to see the raw API responses:
Expand Down
10 changes: 10 additions & 0 deletions self-hosting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,16 @@ docker compose exec web env DRY_RUN=false bin/rails security:backfill_encryption

The task is idempotent, so it is safe to rerun if needed.

### Sure NDJSON import file size limit

By default, Sure NDJSON imports are limited to a fixed maximum file size. Self-hosted admins can raise this limit with an environment variable:

```txt
SURE_IMPORT_MAX_NDJSON_SIZE_MB=100
```

This setting applies to both the GUI upload and the API upload paths. Set the value to the maximum file size in megabytes that you want to allow.

### Slow CSV imports

If CSV imports are processing rows slower than expected, check your worker logs for errors:
Expand Down