mpiorowski/sgsg

What about backups?

Closed this issue · 2 comments

The deployment section of the README lacks information about how to enable backups.

What about integrating litestream or another SQLite backup solution?

Very good idea, the way i do it is a simpel as possible, got a cron running that every night just run sqlite3 db.sqlite3 ".backup db.back" (ensures that the db is locked, so no writes are lost) and scp that sends it to my home server :)

Will add this into Readme description. And will also suggest Your solution, which i didnt know before.

Added a script and section i nReadme :)