hi my name is...
801 |├── .gitignore ├── README.md ├── chattr.html ├── requirements.txt └── scab.py /.gitignore: -------------------------------------------------------------------------------- 1 | Signal-Archive 2 | Signal 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Signal Conversation Archive Backup 2 | 3 | ## SCAB 4 | 5 | Welcome to [Signal Conversation Archive Backup (SCAB)](https://github.com/mattsta/signal-backup)! 6 | 7 | Full writeup is at: https://matt.sh/signal-backup 8 | 9 | ## Usage 10 | 11 | To backup your Signal Desktop database, run the following commands to: 12 | 13 | - check out SCAB 14 | - install Python requirements 15 | - copy your Signal Desktop database (and attachments) into a new directory so nothing is read against your live Signal DB 16 | - generate a single local HTML page web viewer for all your conversations 17 | 18 | ```erlang 19 | git clone https://github.com/mattsta/signal-backup 20 | pip3 install -r requirements.txt 21 | cd signal-backup 22 | rsync -avz "/Users/$(whoami)/Library/Application Support/Signal" Signal-Archive 23 | cd Signal-Archive 24 | python3 ../scab.py 25 | open myConversations.html 26 | ``` 27 | -------------------------------------------------------------------------------- /chattr.html: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
744 | 757 | 758 |hi my name is...
801 |