mirror of
https://github.com/wekan/wekan.git
synced 2025-06-27 17:00:47 -04:00
420 B
420 B
Paste big JSON in Linux
- Copy WeKan board JSON to clipboard
sudo apt install xclip
cat board.json | xclip -se c
-
At some Chromium-based browser, click right top your username / All Boards / New Board / From Previous Export.
-
At input field, right click / Paste as Text.
-
Click Import.
JSON to SQLite3
sqlite3 wekan.db
.mode json
.load wekan-export-board.json board
To be continued