The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
wekan/docs/ImportExport/From-Previous-Export.md

420 B

Paste big JSON in Linux

  1. Copy WeKan board JSON to clipboard
sudo apt install xclip

cat board.json | xclip -se c
  1. At some Chromium-based browser, click right top your username / All Boards / New Board / From Previous Export.

  2. At input field, right click / Paste as Text.

  3. Click Import.

JSON to SQLite3

sqlite3 wekan.db

.mode json

.load wekan-export-board.json board

To be continued