first commit

This commit is contained in:
Dave Morriss
2022-11-19 21:27:51 +00:00
commit 3c4d96db1b
15 changed files with 4682 additions and 0 deletions

14
db_regen Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
#
# Make a new empty database using the schema file
#
BASEDIR="$HOME/HPR/feed_watcher"
DB="$BASEDIR/feedWatcher.db"
SCHEMA="$BASEDIR/feedWatcher_schema.sql"
if [[ -e $DB ]]; then
rm -f "$DB"
fi
sqlite3 "$DB" < "$SCHEMA"