dspot-trello-gantt 0.3.6 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,7 @@ This document summarizes the real installation and publishing flow we validated,
|
|
|
4
4
|
|
|
5
5
|
## Index
|
|
6
6
|
|
|
7
|
+
- [What this project does](#what-this-project-does)
|
|
7
8
|
- [1) Install and validate the CLI](#1-install-and-validate-the-cli)
|
|
8
9
|
- [2) Initialize a local project](#2-initialize-a-local-project)
|
|
9
10
|
- [3) Configure Trello in `.env`](#3-configure-trello-in-env)
|
|
@@ -14,6 +15,13 @@ This document summarizes the real installation and publishing flow we validated,
|
|
|
14
15
|
- [Common errors (and fixes)](#common-errors-and-fixes)
|
|
15
16
|
- [Operational recommendation](#operational-recommendation)
|
|
16
17
|
|
|
18
|
+
## What this project does
|
|
19
|
+
|
|
20
|
+
- Reads cards from a Trello board using the Trello API.
|
|
21
|
+
- Converts board data into Mermaid Gantt tasks.
|
|
22
|
+
- Generates a standalone HTML report that can be shared locally.
|
|
23
|
+
- Optionally publishes the report to Google Apps Script using a stable URL.
|
|
24
|
+
|
|
17
25
|
## 1) Install and validate the CLI
|
|
18
26
|
|
|
19
27
|
Requirement: Node.js `>=18` (recommended LTS versions: `18`, `20`, or newer).
|
|
@@ -188,7 +196,7 @@ Most likely cause:
|
|
|
188
196
|
Fix:
|
|
189
197
|
|
|
190
198
|
1. Go to Google Cloud Console -> OAuth consent screen -> Test users.
|
|
191
|
-
2. Add the user email (for example `
|
|
199
|
+
2. Add the user email (for example `myuser@gmail.com`).
|
|
192
200
|
3. Verify `google_oauth_client.json` belongs to that same OAuth project.
|
|
193
201
|
4. Delete `credentials/token.json` and retry `trello-gantt-js publish`.
|
|
194
202
|
|