We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6f532c commit 7eaf2c4Copy full SHA for 7eaf2c4
.gitignore
@@ -1,4 +1,5 @@
1
*.sqlite
2
+backup/*
3
*.db
4
*/__pycache__/
5
*.pyc
scripts/backup-db.sh
@@ -0,0 +1,19 @@
+#!/usr/bin/env bash
+
+DIR=backup
+mkdir -p $DIR
6
7
+function cleanup {
8
+ # Delete oldest backup
9
+ candidate="$(find $DIR -type f | sort | head -n 1)"
10
+ echo "Deleting $candidate"
11
+ rm "$candidate"
12
+}
13
14
+# Make sure backup directory doesn't take more than 30gb (+the new backup)
15
+while [ "$(du -s $DIR | cut -f1)" -gt 3000000 ]; do
16
+ cleanup
17
+done
18
19
+cp movie.db "$DIR/$(date +%Y-%m-%d-%H-%M-%S)-movie.db"
0 commit comments