mirror of
https://github.com/wekan/wekan.git
synced 2026-01-21 00:36:10 +01:00
Reorganized Docs. In Progress.
This commit is contained in:
parent
1961e22cbd
commit
ce89ff4833
202 changed files with 0 additions and 0 deletions
26
docs/ImportExport/From-Previous-Export.md
Normal file
26
docs/ImportExport/From-Previous-Export.md
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
## Paste big JSON in Linux
|
||||
|
||||
1. Copy WeKan board JSON to clipboard
|
||||
|
||||
```
|
||||
sudo apt install xclip
|
||||
|
||||
cat board.json | xclip -se c
|
||||
```
|
||||
2. At some Chromium-based browser, click right top your username / All Boards / New Board / From Previous Export.
|
||||
|
||||
3. At input field, right click / Paste as Text.
|
||||
|
||||
4. Click Import.
|
||||
|
||||
## JSON to SQLite3
|
||||
|
||||
```
|
||||
sqlite3 wekan.db
|
||||
|
||||
.mode json
|
||||
|
||||
.load wekan-export-board.json board
|
||||
```
|
||||
|
||||
To be continued
|
||||
Loading…
Add table
Add a link
Reference in a new issue