focalboard/import/trello
Leo Palmer Sunmo f51b33dd87
Add the ability to import checklists from Trello (#1430)
* Add the ability to import checklists from Trello

* Fix various lint and import issues
2021-10-04 16:08:29 -07:00
..
.vscode Importer .vscode settings 2021-02-22 10:57:55 -08:00
.eslintrc.json Update import examples 2021-02-17 15:55:59 -08:00
.gitignore Update import examples 2021-02-17 15:55:59 -08:00
importTrello.ts Add the ability to import checklists from Trello (#1430) 2021-10-04 16:08:29 -07:00
package-lock.json update import dependencies (#1180) 2021-09-14 11:52:12 -06:00
package.json npm audit fix (#405) 2021-05-13 16:17:07 -06:00
README.md Add crucial step to Trello import readme 2021-04-13 10:27:52 +02:00
trello.ts Update import examples 2021-02-17 15:55:59 -08:00
tsconfig.json Import scripts 2021-02-16 11:34:58 -08:00
utils.ts Update import examples 2021-02-17 15:55:59 -08:00

Trello importer

This node app converts a Trello json archive into a Focalboard archive. To use:

  1. From the Trello Board Menu, select More, then Print and Export, and Export to JSON
  2. Save it locally, e.g. to trello.json
  3. Run npm install from within focalboard/webapp
  4. Run npm install from within focalboard/import/trello
  5. Run npx ts-node importTrello.ts -i <path-to-trello.json> -o archive.focalboard (also from within focalboard/import/trello)
  6. In Focalboard, click Settings, then Import archive and select archive.focalboard

Import scope

Currently, the script imports all cards from a single board, including their list (column) membership, names, and descriptions. Contribute code to expand this.