Feature suggestions

Yes

In this case backups are easy. Here’s what I do

  1. Create backup-everdo.sh, specify the correct source and destination paths.
#!/bin/bash
source=/home/andrei/.config/everdo/db
cp -a -- "$source" "/home/andrei/Dropbox/backup/everdo-db_$(date +"%Y-%m-%dT%H-%M")"
  1. Make executable: $ chmod +x backup-everdo.sh
  2. Try running the script and verify results $ ./backup-everdo.sh
  3. Setup a cron rule to repeat the script. Mine is every 4 hours, which allows for a few backups during a day. $ crontab -e
0 */4 * * * /home/andrei/backup-everdo.sh

This is also possible, please see Change storage location in sqlite base under windows