|
| 1 | +# Integration Roadmap |
| 2 | + |
| 3 | +This page helps you choose a reading path through the ExcelAlchemy docs based on |
| 4 | +what you are trying to build. |
| 5 | + |
| 6 | +If you want the fastest general entry point, start with |
| 7 | +[`docs/getting-started.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/docs/getting-started.md). |
| 8 | +If you want screenshots and captured workflow output first, see |
| 9 | +[`docs/examples-showcase.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/docs/examples-showcase.md). |
| 10 | + |
| 11 | +## 1. If You Are Integrating ExcelAlchemy For The First Time |
| 12 | + |
| 13 | +Recommended order: |
| 14 | + |
| 15 | +1. [`docs/getting-started.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/docs/getting-started.md) |
| 16 | +2. [`docs/public-api.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/docs/public-api.md) |
| 17 | +3. [`examples/README.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/examples/README.md) |
| 18 | +4. [`docs/examples-showcase.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/docs/examples-showcase.md) |
| 19 | + |
| 20 | +Focus on these concepts first: |
| 21 | + |
| 22 | +- stable import paths |
| 23 | +- schema declaration style |
| 24 | +- `storage=...` as the recommended backend integration path |
| 25 | +- the difference between import, create-or-update, and export workflows |
| 26 | + |
| 27 | +## 2. If You Are Building A Backend API |
| 28 | + |
| 29 | +Recommended order: |
| 30 | + |
| 31 | +1. [`docs/result-objects.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/docs/result-objects.md) |
| 32 | +2. [`docs/api-response-cookbook.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/docs/api-response-cookbook.md) |
| 33 | +3. [`examples/fastapi_reference/README.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/examples/fastapi_reference/README.md) |
| 34 | +4. [`docs/public-api.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/docs/public-api.md) |
| 35 | + |
| 36 | +Focus on these objects: |
| 37 | + |
| 38 | +- `ImportResult` |
| 39 | +- `CellErrorMap` |
| 40 | +- `RowIssueMap` |
| 41 | + |
| 42 | +Use these payload helpers directly in your API layer: |
| 43 | + |
| 44 | +- `ImportResult.to_api_payload()` |
| 45 | +- `CellErrorMap.to_api_payload()` |
| 46 | +- `RowIssueMap.to_api_payload()` |
| 47 | + |
| 48 | +## 3. If You Are Building Frontend Error Displays |
| 49 | + |
| 50 | +Recommended order: |
| 51 | + |
| 52 | +1. [`docs/result-objects.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/docs/result-objects.md) |
| 53 | +2. [`docs/api-response-cookbook.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/docs/api-response-cookbook.md) |
| 54 | +3. [`examples/fastapi_reference/README.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/examples/fastapi_reference/README.md) |
| 55 | + |
| 56 | +Focus on these payload fields: |
| 57 | + |
| 58 | +- `code` |
| 59 | +- `message_key` |
| 60 | +- `message` |
| 61 | +- `display_message` |
| 62 | + |
| 63 | +And these grouped or summary helpers: |
| 64 | + |
| 65 | +- `summary.by_field` |
| 66 | +- `summary.by_row` |
| 67 | +- `summary.by_code` |
| 68 | +- `facets.field_labels` |
| 69 | +- `facets.codes` |
| 70 | +- `facets.row_numbers_for_humans` |
| 71 | +- `grouped.messages_by_field` |
| 72 | +- `grouped.messages_by_row` |
| 73 | +- `grouped.messages_by_code` |
| 74 | + |
| 75 | +## 4. If You Want Copyable Reference Code |
| 76 | + |
| 77 | +Start here: |
| 78 | + |
| 79 | +- [`examples/employee_import_workflow.py`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/examples/employee_import_workflow.py) |
| 80 | +- [`examples/create_or_update_import.py`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/examples/create_or_update_import.py) |
| 81 | +- [`examples/export_workflow.py`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/examples/export_workflow.py) |
| 82 | +- [`examples/fastapi_reference/README.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/examples/fastapi_reference/README.md) |
| 83 | + |
| 84 | +## 5. If You Need Migration And Compatibility Context |
| 85 | + |
| 86 | +Read: |
| 87 | + |
| 88 | +1. [`MIGRATIONS.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/MIGRATIONS.md) |
| 89 | +2. [`docs/public-api.md`](https://github.com/RayCarterLab/ExcelAlchemy/blob/main/docs/public-api.md) |
| 90 | + |
| 91 | +This is the best route when you need to answer: |
| 92 | + |
| 93 | +- which imports are stable |
| 94 | +- which imports are compatibility-only |
| 95 | +- how the 2.x line treats legacy Minio configuration |
0 commit comments